gpt4 book ai didi

android - 如何在 Android 中的 Alert Box 中关闭应用程序 onClick?

转载 作者:搜寻专家 更新时间:2023-11-01 09:12:30 24 4
gpt4 key购买 nike

如何在 onClick() 中关闭 Android 中的应用程序?

我的代码如下:

alertbox.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
System.out.println("cancel clicked");
}
});
alertbox.show();

如果我在 onClick 中编写 finish() 它没有帮助。

最佳答案

试试这个

alertbox.setNegativeButton("No", new DialogInterface.OnClickListener() {               
public void onClick(DialogInterface arg0, int arg1) {
ActivityName.this.finish();
}
});
alertbox.show();
}

关于android - 如何在 Android 中的 Alert Box 中关闭应用程序 onClick?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7253782/

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