Pranesh Sahu
Pranesh Sahu

Reputation: 595

RecyclerView or ViewPager or ViewFlipper

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

enter image description here

Upvotes: 2

Views: 781

Answers (2)

Ferdous Ahamed
Ferdous Ahamed

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

Aniruddh Parihar
Aniruddh Parihar

Reputation: 3101

Actually he is using both RecyclerView and ViewPager

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

Related Questions