码迷,mamicode.com
首页 > 其他好文 > 详细

AlertDialog The specified child already has a parent. You must call removeView() on the child's parent first.

时间:2014-10-18 13:50:44      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   os   ar   使用   strong   sp   div   on   log   

点击AlertDialog 关闭之后再点击报错:

 

The specified child already has a parent. You must call removeView() on the child‘s parent first.

 

意思是这个子view 已经有个父view了,你现在要使用的话,必须把子view从父view中移除掉。

解决:

 加上 : ((ViewGroup) view.getParent()).removeView(view);  

 

 

builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {

 

((ViewGroup) layout.getParent()).removeView(layout);
}
});

 

 
 

AlertDialog The specified child already has a parent. You must call removeView() on the child's parent first.

标签:blog   os   ar   使用   strong   sp   div   on   log   

原文地址:http://www.cnblogs.com/Ringer/p/4032892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!