How to change ViewPager's page?

后端 未结 5 646
暗喜
暗喜 2020-11-30 22:23

I\'m using ViewPager in my app and define it in the main Activity. Inside onCreate method I load some number of pages from SharedPreferences and then pass it to

5条回答
  •  生来不讨喜
    2020-11-30 22:51

    for switch to another page, try with this code:

    viewPager.postDelayed(new Runnable()
    {
        @Override
        public void run()
        {
            viewPager.setCurrentItem(num, true);
        }
    }, 100);
    

提交回复
热议问题