本文介绍了如何让 PagerAdapter 加载所有页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道默认情况下 PagerAdapter
只加载当前页面、下一页和上一页.有什么办法可以改变它,所以它会加载每个页面?谢谢!
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!
推荐答案
如果你有 N
个页面,你可以使用 setOffscreenPageLimit(N-1)
,这样它就会将所有页面保留在记忆.
If you have N
pages, you can use setOffscreenPageLimit(N-1)
, so that it will keep all pages in memory.
这篇关于如何让 PagerAdapter 加载所有页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!