ViewPager內使用FragmentPagerAdapter時滑動出現 java.lang.IllegalStateException: The specified child already h

沐緣發表於2019-01-07

java.lang.IllegalStateException:Thespecifiedchildalreadyhasaparent.YoumustcallremoveView()onthechild’sparentfirst,解決辦法:viewpager.setOffscreenPageLimit(6);要讓這個PageLimit的數量大於adapter中的數量。
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中的數量。

相關文章