How to add dividers/spaces between Adapters of concatadapter in Recylerview
We can create ConcatAdapter using multiple adapters in Android using
concatenated = new ConcatAdapter(adaplterlist);
recyclerView.setAdapter(concatenated);
I want to create a horizontal recylerview using
recyclerView.setLayoutManager(new LinearLayoutManager(getActivity(),
RecyclerView.HORIZONTAL, false));
However I want to have a divider or space bewteen 2 Adapters , Like the Image below
DividerItemDecoration is not useful.
how can we do this.

You could try adding another adapter between two adapters with 1 item in it and set view's size to exact space you need.