0

我有以下代码:

            AlertDialog.Builder b = new AlertDialog.Builder(getActivity());
            View view = LayoutInflater.from(getActivity()).inflate(R.layout.displayfilecontents, null);
            EditText text = (EditText) view.findViewById(R.id.etFileContents);
            if (text != null) {
                text.setFocusable(false);
                text.setLongClickable(false);
                text.setTextIsSelectable(false);
            }
            text.setText(builder);
            b.setView(view);
            b.setTitle("Trip Name: " + FilesInFolder.get(position).toString().substring(0, FilesInFolder.get(position).toString().lastIndexOf(".")));
            Button btnCloseIt = (Button) view.findViewById(R.id.btnClose);
            btnCloseIt.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    b.dismiss();
                }
            });
            AlertDialog dl = b.create();
            dl.show();

btnCloseIt一旦按下,我试图关闭对话框。我在这一行收到一个错误:

b.dismiss(); //giving an error

错误:The method dismiss() is undefined for the type AlertDialog.Builder

更新:[已解决]

        // custom dialog
        final Dialog dialog = new Dialog(getActivity());
        dialog.setContentView(R.layout.displayfilecontents);
        dialog.setTitle("Trip Name: " + FilesInFolder.get(position).toString().substring(0, FilesInFolder.get(position).toString().lastIndexOf(".")));

        EditText text = (EditText) dialog.findViewById(R.id.etFileContents);
        if (text != null) {
            text.setFocusable(false);
            text.setLongClickable(false);
            text.setTextIsSelectable(false);
        }
        text.setText(builder);
        Button btnCloseIt = (Button) dialog.findViewById(R.id.btnClose);
        // if button is clicked, close the custom dialog
        btnCloseIt.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                dialog.dismiss();
            }
        });
        dialog.show();
4

2 回答 2

3

正如其他人已经指出的那样,b是对自身的引用AlertDialog.Builder而不是对Dialog自身的引用。AlertDialog.Builder类没有任何名为dismiss(). 当您从类中调用或方法时,保存对Dialog返回给您的引用。create()show()AlertDialog.Builder

还有一件事,既然你同时调用create()show()方法,你真的要调用这两个方法吗?我相信在这里只调用show()方法就足够了。来自开发人员参考public AlertDialog show () :使用提供给此构建器的参数创建一个 AlertDialog,并且 show() 的对话框。

于 2013-08-05T15:23:23.340 回答
1

您需要存储调用的结果b.create();这就是你需要呼吁dismiss()的。

于 2013-08-05T15:16:24.443 回答