今天在做LinearLayout添加MapView的时候使用:
- Java代码
- layoutView.removeAllViews();
- layoutView.addView(baidumap);
这段代码报如下异常:
- Java代码
- The specified child already has a parent. You must call removeView() on the child's parent first
实践证明baidumap依旧还有parent,于是在打开该视图之前,再调用多一次layoutView.removeAllViews()方法解决,真是奇怪。
本文转自06peng 51CTO博客,原文链接:http://blog.51cto.com/06peng/963289,如需转载请自行联系原作者