安卓自己定义对话框及The specified child already has a child问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓自己定义对话框及The specified child already has a child问题相关的知识,希望对你有一定的参考价值。

问题:在android开发过程中,有时会在不同情况下遇到同种问题:The specified child already has a parent.You must call removeView() on the child‘s parent first.日志中例如以下图所看到的:

技术分享

分析:意思是这个特定的child已经有一个parent了,假设你要继续使用它,就必须先调用removeView()方法移除它原来的的parent,才干继续你的内容。

举例:在主activity中点击按键弹出自己定义View的对话框

首先:

setContentView(R.layout.main); 

etContentView(R.layout.main
其次

其次:对button进行click监听,click函数里调用对话框函数

1.对话框的处理:新建defView,里面有一个edittext(其它控件的也一样)

  <EditText 
        android:id="@+id/filename"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

2.由于对话框中要调用的控件不在布局文件main.xml中,所以我们必须先调用布局填充类的相关函数找到该布局

LinearLayout def = (LinearLayout) getLayoutInflater().inflate(R.layout.dialog_save_file, null);

3.然后在该布局中找到对应的控件:

edtTxtFileName = (EditText) saveForm.findViewById(R.id.filename);

4.click函数中对话框的建立

AlertDialog.Builder builder = new AlertDialog.Builder(this)
				.setTitle("保存sdcard/sign/").setIcon(R.drawable.save_file)
				.setView(def);//这里给对话框增加了自己定义的内容
</pre><pre name="code" class="java">最后:在对话框本身的按键确定或者取消click响应中增加:
((ViewGroup) saveForm.getParent()).removeView(def);




以上是关于安卓自己定义对话框及The specified child already has a child问题的主要内容,如果未能解决你的问题,请参考以下文章

WebBrowser脚本错误的原因及Web Browser Control & Specifying the IE Version

The __thread storage class specifier

嵌套Fragment的使用及遇到The specified child already has a parent. You must call removeView()问题的解决

“ ImportError: DLL load failed: The specified procedure could not be found”- 使用 Keras 在 Python 中使用 C

git ------ fatal: No configured push destination. Either specify the URL from the command-line or co

mysql报错--initialize specified but the data directory has files in it. Aborting.