Reputation: 595
I'm little confused after observing the play store app;Wondering the play store uses recyclerview or ViewPager or ViewFlipper to list offer.Please check the attached images rounded in blue color
Upvotes: 2
Views: 781
Reputation: 21766
#. This behavior can be done by using RecyclerView
with LinearLayoutManager
.
#. For each item of RecyclerView
, use CardView
containing ViewPager
or ViewFlipper
to show auto scroll-able multiple ads on each CardView
.
Upvotes: 0
Reputation: 3101
Actually he is using both
RecyclerView
andViewPager
for the purpose of advertising above like in image he is using ViewPager with AutoScroll and for the App View in Horizontal Scrolling he is using RecyclerView with orientation Horizontal.
Upvotes: 3