指定的子项已有父项。您必须首先在Alert Dialog上调用子节点父节点上的removeView()

时间:2017-08-02 10:47:44

标签: android android-alertdialog

这是代码,我正在添加AlertDialog并在关闭时调用它

new AlertDialog.Builder(this)
                .setTitle("Exit")
                .setView(mview)
                .setMessage("Do you really want to exit?")
                .setNegativeButton("No",null)
                .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                            finish();
                    }
                }).show();

当我第二次点回时,应用程序崩溃

0 个答案:

没有答案