gpt4 book ai didi

android - 如何防止警报对话框被后退按钮关闭

转载 作者:IT王子 更新时间:2023-10-28 23:33:34 31 4
gpt4 key购买 nike

我有一个这样的警告对话框:

    AlertDialog.Builder oyunaBaslaDialog = new AlertDialog.Builder(this);
oyunaBaslaDialog.setMessage("A Takımı");
oyunaBaslaDialog.setNeutralButton("Başla!",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
oyunOyna();
}
});
oyunaBaslaDialog.show();

此对话框显示在 onCreate 方法中。我希望它只是被它上面的按钮关闭。但是硬件返回按钮也可以在不执行对话框操作的情况下关闭此对话框。

我不希望后退按钮关闭此对话框,我该怎么办?

最佳答案

使用 Dialog.setCancelable() :

Sets whether this dialog is cancelable with the BACK key.

在您的代码中,这将是:

oyunaBaslaDialog.setCancelable(false);

关于android - 如何防止警报对话框被后退按钮关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7113591/

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