Android's ViewPager determines the number of pages when viewPager.setAdapter(pagerAdapter)is called, and then it doesn't update that count even when pagerAdapter.notifyDataSetChanged() is called.
So if the number count of the pages in the adapter is dynamic, you need to run this code every time the number of pages changes:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void updatePageCount(ViewPager viewPager) { | |
int currentItem = pager.getCurrentItem(); | |
pager.setAdapter(pager.getAdapter()); | |
pager.setCurrentItem(currentItem); | |
} |