How to choose an adapter for pager viewing?

I need to show images in a ViewPager .

But I don't know which adapter to choose:

1) PagerAdapter

2) Fragment adapter.

What is the best image display for my task?

+3


source to share


2 answers


If its images are fair, then I would only suggest the Pager Adapter since there is no need for fragments.



+2


source


Google example uses PagerAdapter, so I would use this

ViewPagers uses PagerAdapters as the source for displaying new pages, so the PagerAdapter will use the previously created fragment class.



http://developer.android.com/training/animation/screen-slide.html#viewpager

+2


source







All Articles