android – 如何阻止alertdialog自动消失
作者:互联网
以下是我的代码,用于在GPS关闭时提醒用户.在这里,我的用户必须单击其中一个选项并进一步移动.但是,如果用户点击此警报以外的其他屏幕,此警报将消失.如何阻止此警报对话框自动消失.请帮忙
Builder bd = new AlertDialog.Builder(myTest.this);
bd.setTitle("Alert");
bd.setMessage("GPS is disabled. Do you want to");
bd.setNegativeButton("Enable GPS", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
startActivity(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
}});
bd.setPositiveButton("Close App", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
}
});
bd.show();
解决方法:
使用bd.setCancelable(false).这将使它只能通过按下按钮消失.
标签:android,android-dialog 来源: https://codeday.me/bug/20190825/1724323.html