标签: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 动态加载 布局 viewgroup removeview
原文地址:http://blog.csdn.net/u010794180/article/details/42656513