Reputation: 1572
What I'm trying to achieve is to create a RecyclerView which scrolls horizontally, and the items should appear in different sizes similar to the drawing started from 0 position and so on. What i have tried so far is:
StaggeredGridLayoutManager staggeredGridLayoutManager = new StaggeredGridLayoutManager(3, StaggeredGridLayoutManager.HORIZONTAL);
, but the spanCount blocks me.Is there any lib or guidelines on how to design a specific RecyclerView Layout Manager ? Any help would be appreciated, thanks!
Upvotes: 0
Views: 1329
Reputation: 2550
Google lib can help you to achieve Staggered horizontal Recyclerview
Upvotes: 2