gpt4 book ai didi

android - 如何阻止警报对话框自动消失

转载 作者:太空宇宙 更新时间:2023-11-03 12:37:54 24 4
gpt4 key购买 nike

下面是我的代码,用于在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com