Divideritemdecoration Doesn't Show Up In Recyclerview
I found that DividerItemDecoration work fine with simple, one line list items, but with more complex one it refuses to show up. Here's the XML of list item:
Solution 1:
Your RecyclerView
's orientation is android:orientation="horizontal"
, but you use DividerItemDecoration.VERTICAL_LIST
. This is wrong. You should use DividerItemDecoration.HORIZONTAL
. This is counter-intuitive :-)
Post a Comment for "Divideritemdecoration Doesn't Show Up In Recyclerview"