I am using a ViewPager with the FragmentStatePagerAdapter to allow navigation between some fragments.

Let's say I have three fragments: A, B and C. The ViewPager shows Fragment A initially, and allows you to navigate to Fragment B by swiping from right-to-left, and then to Fragment C by swiping again. This allows the following navigation paths: A <--> B <--> C.

What I would like is to be able to swipe from left-to-right on Fragment A and have the ViewPager show Fragment C, i.e. for it to behave as a circular queue and allow ... --> C <--> A <--> B <--> C <--> A <-- ...

I do not want the Fragments duplicated in other positions (i.e. ending up with more than three instances).

Is this wrapping functionality possible with a ViewPager?

link|improve this question
1  
It's not built-in to ViewPager, but you might try modifying FragmentStatePagerAdapter.instantiateItem to use some modulus math to load the proper Fragment. You'll need to override getCount to return a sufficiently large number. – tad Oct 3 '11 at 5:09
@antonyt Were you able to find a solution to this? – Bryan Denny Oct 8 '11 at 3:27
@BryanDenny not yet, I've actually transitioned my app to a different design for now. I will post back if I get a working solution to the original problem. – antonyt Oct 10 '11 at 19:48
Did you find a solution? – Enigma Feb 8 at 6:50
@Enigma please see my answer below. – antonyt Mar 11 at 16:58
show 1 more comment
feedback

3 Answers

up vote 4 down vote accepted

I've implemented a ViewPager/PagerAdapter that can allow for pseudo-infinite paging behaviour. It works by specifying a very large number as the actual count, but maps them to the actual range of the dataset/pageset. It offsets the beginning by a large number also so that you can immediately scroll to the left from the 'first' page.

It doesn't work so well once you get to 1,000,000th page (you will see graphical glitches when scrolling), but this is typically not a real-world use-case. I could fix this by resetting the count to a lower number once in a while, but I will leave it how it is for now.

The InfinitePagerAdapter wraps an existing ViewPager, and so the usage is quite transparent. The InfiniteViewPager does does a bit of work to make sure you can potentially scroll to the left and right many times.

https://github.com/antonyt/InfiniteViewPager

link|improve this answer
Wow this is great. I made it into a pseudo-infinite (365 actually) pager. Testing now with TitlePageIndicator. Thanks a lot – Bandreid Mar 28 at 1:15
feedback

This almost accomplishes what antonyt wants, it wont let you go from A -> C though. (Not tested vigorously, but seems to work well enough)

public class MyAdapter extends PagerAdapter {
    private List<Object> mItems;
    private int mFakeCount = 0;

    public MyAdapter(Context context, List<Object> items) {
        mItems = items;
        mFakeCount = mItems.size()+1;
    }

    @Override
    public int getCount() {
        return mFakeCount;
    }

    @Override
    public Object instantiateItem(View collection, int position) {
        // make the size larger, and change the position
        // to trick viewpager into paging forever
        if (position >= mItems.size()-1) {
            int newPosition = position%mItems.size();

            position = newPosition;
            mFakeCount++;
        }

        // do your layout inflating and what not here.
        // position will now refer to a correct index into your mItems list
        // even if the user has paged so many times that the view has wrapped
    }
}
link|improve this answer
It WILL let you go from A -> C if you call viewPager.setCurrentItem((int) (adapter.getCount()/2), false); after setting the adapter. This way, your ViewPager will initialize to middle position, so you can scroll in both directions. – Bojan Radivojevic Bomber May 22 at 10:44
feedback

Yes, this is possible when you store the references inside a circular LinkedList
which every item also point to the next one like:

A -> B        
B -> C
C -> A

Don't forget to validate initialization of the Fragment (the date in it) every time when

FragmentStatePagerAdapter.instantiateItem(View convertView, int position)    

is called (the method that creates the pages inside the PagerAdapter) to avoid redundant data loading within the same Fragment that has been shown previously.

link|improve this answer
can you share some your code? – Enigma Feb 9 at 7:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.