I've viewpager that has 604 webviews and i want to load 5 pages every time that user scrolling the pager, like that:
{...[4][5][6][7][8]...}
I assume that the current page that selected by user is page 6, so i want to load 2 pages before and after the selected one. I used this built-in method viewPager.setOffscreenPageLimit(3)
and it doesn't run as expected!
so, any advice will be appreciated.