ViewPager.setOffscreenPageLimit(0) 无法按预期工作

ViewPager.setOffscreenPageLimit(0) doesn#39;t work as expected(ViewPager.setOffscreenPageLimit(0) 无法按预期工作)
本文介绍了ViewPager.setOffscreenPageLimit(0) 无法按预期工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 ViewPager 实例中使用的片段非常耗费资源,所以我只想一次加载一个.当我尝试以下操作时:

The fragments I use in my ViewPager instance are quite resource intensive, so I'd only like to load one at a time. When I try the following:

mViewPager.setOffscreenPageLimit(0);
mViewPager.setAdapter(mPagerAdapter);

我的 FragmentStatePagerAdapter.getItem(int position) 覆盖函数被调用了 3 次,这就是我调用 mViewPager.setOffscreenPageLimit(1) 时发生的情况.我希望它只被调用一次,因为我指定了 0 个屏幕外页面.

My FragmentStatePagerAdapter.getItem(int position) override function is called 3 times, which is what happens when I call mViewPager.setOffscreenPageLimit(1). I would expect it to only be called once, because I specified 0 offscreen pages.

我相信我正确调用了所有内容,因为如果我调用 mViewPager.setOffscreenPageLimit(2)FragmentStatePagerAdapter.getItem(int position) 会被调用 5 次会期望.

I believe I'm calling everything correctly, because if I call mViewPager.setOffscreenPageLimit(2), FragmentStatePagerAdapter.getItem(int position) is called 5 times as I would expect.

ViewPager 是否需要至少 1 个屏幕外页面,或者我在这里做错了什么?

Does ViewPager require a minimum of 1 offscreen pages, or am I doing something wrong here?

推荐答案

ViewPager 是否需要至少 1 个屏幕外页面

Does ViewPager require a minimum of 1 offscreen pages

是的.如果我正确阅读了源代码,您应该会在 LogCat 中收到关于此的警告,例如:

Yes. If I am reading the source code correctly, you should be getting a warning about this in LogCat, something like:

Requested offscreen page limit 0 too small; defaulting to 1

这篇关于ViewPager.setOffscreenPageLimit(0) 无法按预期工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)