onPageSelected isn't triggered when calling setCurrentItem(0)

后端 未结 10 1765
梦如初夏
梦如初夏 2020-12-22 20:13

I have an Activity with a ViewPager which displays a bunch of pictures. When it starts the ViewPager\'s position is set based on what the user selected in a previous Activit

10条回答
  •  误落风尘
    2020-12-22 20:28

    The cleanest solution I've found to this so far is to take a reference to the onPageChangeListener you set on the ViewPager (since I don't think there's a ViewPager.getOnPageChangeListener() method), then after you've set the ViewPager's adapter, call:

    onPageChangeListener.onPageSelected(viewPager.getCurrentItem());
    

    However, the fragment for the page at the current index won't have been instantiated yet (at least if you're using FragmentStatePagerAdapter), so you may need to wrap it in a runnable, ala:

    viewPager.post(new Runnable(){
    @Override
        public void run() {
            onPageChangeListener.onPageSelected(viewPager.getCurrentItem());
        }
    });
    

    Also, if within the onPageSelected handler you need a reference to the fragment, you'll have to do that yourself. I use an abstract base class for my FragmentStatePagerAdapter which overrides the instantiate and destroy methods, and adds/removes the fragments from a SparseArray.

提交回复
热议问题