How to create carousel ViewPager?

前端 未结 3 1446
夕颜
夕颜 2021-02-04 17:13

All I want to do is a horizontal carousel in Android.

If I have 3 screens A B and C then I want my ViewPager to allow me to move like A <-> B, B <-> C, C <->

相关标签:
3条回答
  • 2021-02-04 17:37

    ViewPager settings:

        mViewPager = (ViewPager) findViewById(R.id.view_pager);
        mViewPager.setAdapter(new YourPagerAdapter(getSupportFragmentManager()));
        //Set the number of pages that should be retained to either side of the current page.
        mViewPager.setOffscreenPageLimit(1);
        mViewPager.setCurrentItem(50);
    

    FragmentPagerAdapter:

    public class YourPagerAdapter extends FragmentPagerAdapter {
        final int PAGE_COUNT = 100;
        final int REAL_PAGE_COUNT = 3;
    
        public YourPagerAdapter(FragmentManager fm) {
            super(fm);
        }
    
        @Override
        public Fragment getItem(int position) {
            while (position > REAL_PAGE_COUNT - 1) {
                position = position - REAL_PAGE_COUNT ;
            }
    
            switch (position) {
                case 0:
                    return FirstFragment.newInstance(position);
                case 1:
                    return SecondFragment.newInstance(position);
                case 2:
                    return ThirdFragment.newInstance(position);
            }
            return null;
        }
    
        @Override
        public int getCount() {
            return PAGE_COUNT;
        }
    }
    
    0 讨论(0)
  • 2021-02-04 17:45

    Implement the getItem(int position) like this:

    public Fragment getItem(int position)
    {
        switch(position)
        {
            case 0:
            Fragment A = new A();
            return A;
            case 1:
            Fragment B = new B();
            return B;
            same for C....
        }
    }
    

    you can also have a look at here: SimpleViewPager.. download the source and understand it. Hope it helps.

    0 讨论(0)
  • 2021-02-04 17:47

    (Cross-posting my answer from an identical StackOverflow question)

    One possibility is setting up the screens like this:

    C' A B C A'

    C' looks just like C, but when you scroll to there, it switches you to the real C. A' looks just like A, but when you scroll to there, it switches you to the real A.

    I would do this by implementing onPageScrollStateChanged like so:

    @Override
    public void onPageScrollStateChanged (int state) {
        if (state == ViewPager.SCROLL_STATE_IDLE) {
            int curr = viewPager.getCurrentItem();
            int lastReal = viewPager.getAdapter().getCount() - 2;
            if (curr == 0) {
                viewPager.setCurrentItem(lastReal, false);
            } else if (curr > lastReal) {
                viewPager.setCurrentItem(1, false);
            }
        }
    }
    

    Note that this calls the alternate form of setCurrentItem and passes false to cause the jump to happen instantly rather than as a smooth scroll.

    There are two main drawbacks I see to this. Firstly, upon reaching either end the user has to let the scrolling settle before they can go further. Secondly, it means having a second copy of all of the views in your first and last page. Depending on how resource-heavy your screens are, that may rule out this technique as a possible solution.

    Note also that since the view pager doesn't let clicks go through to underlying controls until after the scrolling has settled, it's probably fine to not set up clicklisteners and the like for the A' and C' fragments.

    Edit: Having now implemented this myself, there's another pretty major drawback. When it switches from A' to A or C' to C, the screen flickers for a moment, at least on my current test device.

    0 讨论(0)
提交回复
热议问题