下面是我的代码,用于在 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 - 如何阻止警报对话框自动消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14386561/