gpt4 book ai didi

android - 后退按钮的确定/取消对话框

转载 作者:行者123 更新时间:2023-11-29 16:18:40 25 4
gpt4 key购买 nike

我正在尝试制作一个对话框按钮,在我进行主要 Activity 时弹出该按钮并询问用户是否确定要关闭该程序。我不确定要在"is"按钮的//Action 中添加什么...有更好的方法吗?

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {



if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this);
alt_bld.setMessage("Are you sure you want to exit?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Action for 'Yes' Button



}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Action for 'NO' Button

dialog.cancel();
}
});
AlertDialog alert = alt_bld.create();
// Title for AlertDialog
alert.setTitle("Exit Game?");
// Icon for AlertDialog
alert.setIcon(R.drawable.icon);
alert.show();


return true;
}

return super.onKeyDown(keyCode, event);
}

最佳答案

例如,您可以完成Activity。调用 finish() 方法。

除此之外,请考虑在 Activity 中使用 DialogFragments(如果您使用兼容库)或 showDialog() 方法 - 这将防止窗口泄漏。

关于android - 后退按钮的确定/取消对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8338418/

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