ViewPager内使用FragmentPagerAdapter时滑动出现
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first,
解决办法:
viewpager.setOffscreenPageLimit(6);
要让这个PageLimit的数量大于adapter中的数量。
时间:2024-3-2 17:03 作者:韩俊 分类: PHP
ViewPager内使用FragmentPagerAdapter时滑动出现
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first,
解决办法:
viewpager.setOffscreenPageLimit(6);
要让这个PageLimit的数量大于adapter中的数量。