我想在一个 Activity 上做一个密码警告框,所以一旦它有正确的答案,它就会关闭对话框,但在搜索如何以我编码的方式关闭对话框时,我似乎无法找到一种方法。
这是我的代码
final AlertDialog.Builder alert1 = new AlertDialog.Builder(this);
alert1.setTitle("Password");
alert1.setMessage("Please enter your password below and press Ok.");
final EditText input = new EditText(this);
alert1.setView(input);
alert1.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String value = input.getText().toString().trim();
((Global) Menu.this.getApplication()).setgPassword(value);
((Global) Menu.this.getApplication()).setgSiteId(strSavedMem1);
LogIn();
}
});
alert1.setNegativeButton("Cancel",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
System.exit(0);
}
});
alert1.show();
有没有办法关闭这个警报框?
最佳答案
您应该查看 Android 文档的此链接:
http://developer.android.com/guide/topics/ui/dialogs.html#DismissingADialog
那里解释了如何取消对话框。