gpt4 book ai didi

android - 如何在android中创建模态对话框

转载 作者:IT老高 更新时间:2023-10-28 23:38:04 35 4
gpt4 key购买 nike

我想为我的应用程序创建模式对话框。

所以当模态对话框打开时,其他 Activity 被阻止。没有像按下后退按钮或按下主页按钮那样完成任何事件。

并在该对话框中放置两个选项按钮取消并确定。

谢谢...

最佳答案

Android中有很多种Dialogs。请看Dialogs .我猜你正在寻找类似 AlertDialog 的东西。这是如何在 BackPress 按钮上实现的示例。

@Override
public void onBackPressed() {
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Do you want to logout?");
// alert.setMessage("Message");

alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
//Your action here
}
});

alert.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
});

alert.show();

}

关于android - 如何在android中创建模态对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18371883/

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