I know that by default PagerAdapter
loads only the current, next and previous pages.
Is there any way to change it, so it will load each and every page?
Thanks!
If you have N
pages, you can use setOffscreenPageLimit(N-1)
, so that it will keep all pages in memory.