AlertDialog.Builder dialog = new AlertDialog.Builder(this);
ListDialog.setPositiveButton(R.string.str_choose, new YesListener());
ListDialog.setNegativeButton(R.string.str_cancel, new NoListener());
dialog.show();
上面的代码是我的。
我可以通过单击按钮关闭对话框。
但是,如果我想在不单击任何按钮的情况下将其关闭。
我该怎么做?