Reputation: 110
what is the difference between viewpager and recyclerview?
I would like to create the effect similar to Instagram Explore Tab. But both looks similar for me to use, may I ask which one is better to use?
Upvotes: 0
Views: 956
Reputation: 9378
Viewpager and Recyclerview are very different for the purpose they have been designed.
ViewPager:
Layout manager that allows the user to flip left and right through pages of data.
RecyclerView:
A flexible view for providing a limited window into a large data set.
If your data is suitable for both of them, go with this:
https://github.com/lsjwzh/RecyclerViewPager
:)
Upvotes: 1