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

动态添加布局时,addView易引发的错误

时间:2015-01-13 09:00:53      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:addview   动态加载   布局   viewgroup   removeview   

今天在做课程设计的时候,因为Adapter里面动态添加View的时候,写了下面的代码

TextView start = new TextView(context,null);
holder.start  = start;
LinearLayout.LayoutParams startl = new LinearLayout.LayoutParams(80,40);
start.setLayoutParams(startl);
start.setText("("+bean.getStart()+")");
((ViewGroup) convertView).addView(start);
(ViewGroup) convertView).addView(start);
结果Logcat报错了

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

原因是:实例化的一个布局(start),然后被我添加到ViewGroup两次。然而一个View只能有一个父控件。当第二次添加的时候就会视图去要改变该控件的父控件。但是android不允许在运行时,已有父控件的子控件改变他的父控件。

动态添加布局时,addView易引发的错误

标签:addview   动态加载   布局   viewgroup   removeview   

原文地址:http://blog.csdn.net/u010794180/article/details/42656513

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