Calling removeAllViews(); still results in IllegalStateException:You must call removeView() on the childamp;#39;s parent first(调用emoveAllViews();仍会导致IlLegalStateException:您必须首先对子对象的父级调用emoveView())
问题描述
我不确定为什么会发生这种情况,但我收到错误消息:调用layout.removeAllViews();
仍然会导致IllegalStateException: The specified child already has a parent.
您必须首先在子级的父级上调用emoveView()。
奇怪的是,我在添加新的之前调用了:emoveAllViews():
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.download);
...
ImageView imageViewz = (ImageView) findViewById(R.id.imageView6);
Picasso.with(context).load(background).into(imageViewz);
LinearLayout layout = new LinearLayout(Download.this);
layout.setId(R.id.download);
LayoutParams layoutParams
= new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
layout.setLayoutParams(layoutParams);
layout.setOrientation(LinearLayout.VERTICAL);
LayoutParams imageViewLayoutParams
= new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
imageViewz.setLayoutParams(imageViewLayoutParams);
layout.removeAllViews();
layout.addView(imageViewz);
setContentView(layout);
但我仍然收到致命错误...所以我不确定发生这种情况的确切原因。
如有任何建议,我们不胜感激。
推荐答案
您的问题与layout
无关。您的问题是imageViewz
。它已经有了父级,这就是触发您的异常的原因。在将layout
添加到layout
之前,您需要从其当前父级中删除imageViewz
。
这篇关于调用emoveAllViews();仍会导致IlLegalStateException:您必须首先对子对象的父级调用emoveView()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:调用emoveAllViews();仍会导致IlLegalStateException:您必须首先对子对象的父级调用emoveView()
- 如何指定 CORS 的响应标头? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 获取数字的最后一位 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01