日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

Android IllegalStateException: The specified child already has a parent问题解决办法

發布時間:2025/3/21 Android 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android IllegalStateException: The specified child already has a parent问题解决办法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

最近遇到一個很讓人頭疼的問題,使用viewpager動態添加頁面或者刪除頁面時出現了問題(java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first),在stackoverflow上找到了解決辦法。(http://stackoverflow.com/questions/22936886/java-lang-illegalstateexception-while-using-viewpager-in-android)

原文是:

the problem is that in your adapters method?instantiateItem
you call?container.addView(v);

but every?View?can have only one parent,
so it can be added only one time to a container via?addView(...).

When you open the popup the first time, everything works, because?v
doesn't have a parent that time. But when you open your popupwinow the second time,
it adds the view again to the container. That cerates the error.

Try to destroy the view if you close the popup view or remove all children views from it with
container.removeAllViews()

解決辦法是在instantiateItem中使用如下方式:

ViewGroup parent = (ViewGroup) v.getParent();if (parent != null) { parent.removeAllViews();} container.addView(v);

中間很多次嘗試已經接近答案,但是習慣性的去把v.getParent()強制轉化為view,view沒有removeView()方法,以至于放棄了這種方法,以后要多思考,想到的解決辦法如果完全不是自己想要的結果,一定要再檢查一遍,很有可能是某個小地方沒注意。

轉載于:https://www.cnblogs.com/zhujiabin/p/7569601.html

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的Android IllegalStateException: The specified child already has a parent问题解决办法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。