Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个ViewPager,里面有一些页面,但是我发现除了当前活动页面之外,所有不可见的页面都会做onMeasure/onLayout,这会浪费很多时间......
有没有办法禁用背景页面这样做?
你可以做:
mViewPager.setOffscreenPageLimit(int);
设置缓存页面。缓存页面的最小值为三个(setOffscreenPageLimit(1)):viewpager 的中心、左侧和右侧。