在android开发过程中,有时会在不同情况下遇到同种问题:
- java.lang.IllegalStateException The specified child already has a parent. You must call removeView() on the child's parent first.
- java.lang.IllegalStateException The specified child already has a parent. You must call removeView() on the child's parent first.
新建一个项目,布局文件中仅包含一个TextView和一个ImageView,布局方式是线性布局(具体可以参考后面的源代码),运行的结果就是显示一个文本和一张图片,
在Activity的onCreate()方法中,我们通常使用以下这种方式来使用布局文件main.xml。
- setContentView(R.layout.main);
- setContentView(R.layout.main);
这里为了解释今天要讲解的这个异常,换一种布局文件的使用方式,即把上面的那一行代码注释掉,换成以下代码:
//获取Infalter对象
- LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
- LinearLayout parent = (LinearLayout) inflater.inflate(R.layout.main, null);
- ImageView child = (ImageView)parent.findViewById(R.id.child);
- setContentView(parent);
- LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
- LinearLayout parent = (LinearLayout) inflater.inflate(R.layout.main, null);
- ImageView child = (ImageView)parent.findViewById(R.id.child);
- setContentView(parent);
LayoutInflater 为布局填充类,不明白的可以自己查,或者有机会我将在博客中介绍一下,然后是将 main.xml 文件 inflate 为 LinearLayout 文件,再得到 child ,即 ImageView 。然后就是通过调用 setContentView(parent) 将这个布局 main.xml 显示出来,这时得到的效果和仅使用 setContentView(R.layout.main) 这句代码得到的效果一样。
下面的操作将会出现异常了,大家注意:
- setContentView(child);
- setContentView(child);
而这时在异常中它提示要再parent中调用removeView()。这里我们就听从指挥,在setContentView(child),之前添上一句parent.removeView(child),这时就不会再调用setContentView(child)就不会异常了,当然当前显示的将只是一幅图片了,而这时如果你调用setContentView(parent)的话将只显示文本内容,因为我们已经将child remove掉了嘛。
代码如下:
http://download.csdn.net/detail/yaolingrui/4129192