dialog - 指定的子级已有父级。您必须首先在孩子的父母上调用removeView()

时间:2016-05-26 09:02:53

标签: java android

检查后要求用户打开互联网服务,我尝试点击按钮,我的应用程序崩溃并显示错误消息

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

在这一行它崩溃了,我试过这样做但是没有完全解决

if(alert.getContext() != null){
            alert.show();
        }

这是完整的代码

else if (id == R.id.xyz) {

            //startActivity(borrowIntent);
            AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
            alert.setTitle("xyz");
            input.setFilters(new InputFilter[] {
                    // Maximum 2 characters.
                    new InputFilter.LengthFilter(6),
                    // Digits only.
                    DigitsKeyListener.getInstance(), 
                });
            // Digits only & use numeric soft-keyboard.
            input.setKeyListener(DigitsKeyListener.getInstance());
            input.setHint("xyz");
            alert.setView(input);
            alert.setPositiveButton("Borrow", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
                if(input.getText().length() == 0)
                {
                    input.setError("xyz is required !");
                }
                else
                {

                   if(isNetworkAvailable())
                      {
                         xyz( input.getText().toString());

                      }else{

                            //setContentView(R.layout.main);

                            AlertDialog.Builder builder = new AlertDialog.Builder(
                                    MainActivity.this);
                              builder.setCancelable(false);
                              builder.setTitle("xyz");
                              builder.setMessage("Please enable wifi services");
                              builder.setInverseBackgroundForced(true);
                              builder.setPositiveButton("Ok",
                                      new DialogInterface.OnClickListener() {
                                          @Override
                                          public void onClick(DialogInterface dialog,
                                                  int which) {

                                              startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);
                                              dialog.dismiss();


                                          }
                                      });
                              AlertDialog alerts = builder.create();
                              alerts.show();
                           }//end of block

                        }
              }
            });
            alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
              public void onClick(DialogInterface dialog, int whichButton) {
                // Canceled.
              }
            });
            if(alert.getContext() != null){
            alert.show(); //crashes at this line
            }
        }

请问我错过了什么?

3 个答案:

答案 0 :(得分:3)

放下以下行

 final AlertDialog alertd = alert.create();

 AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);

答案 1 :(得分:2)

根据此post,添加此检查以从其父级删除输入并读取它:

if(input.getParent()!=null)
        ((ViewGroup)input.getParent()).removeView(input); // <- fix
    alert.addView(input);

答案 2 :(得分:0)

以下情况也可能发生(发生在我身上):

有时,当您使用列表视图时,会使用属于特定布局的适配器对其进行初始化。现在,假设此布局文件的根视图是ID为“ root_view”的<LinearLayout>

如果您现在在活动中注册上下文菜单并创建一个AlerdDialog.Builder,则在选择某个菜单元素并使用布局文件对其进行初始化之后,该AlertDialog会出现,该布局文件还具有一个名为“ root_view”的根元素”,其中属于您findViewById的所有元素都是它的子元素,那么这些元素“将不会被找到”。您将无法使用builder.show()访问这些元素,而是只能从列表视图的中访问这些元素,并且在调用alert.show()的行(或在 token_pattern_ = r'([a-zA-Z0-9-/]{1,})' )。

因此,通常,对于您的项目,最好在布局文件中唯一地命名元素的ID。