Recyclerview Inside Horizontalscrollview
how can i put vertical recyclerview inside horizontalScrollview ? when adapter binds data at viewholder, item's left margin is increase. (ex : leftMargin = position * 100) but does
Solution 1:
If what you want is a list of items that scroll horizontally, use LinearLayoutManager
with your RecyclerView
.
LinearLayoutManager manager = new LinearLayoutManager(
this,
LinearLayoutManager.HORIZONTAL,
false
);
Post a Comment for "Recyclerview Inside Horizontalscrollview"