- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我在我的 android 项目中使用此代码:
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
但是,Eclipse 说 setButton()
已被弃用。请帮助我提供替代解决方案。谢谢!
最佳答案
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle("ALERTTILESTRING")
.setMessage("alertNameString")
.setCancelable(false)
.setNegativeButton("Close",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}
我希望上面的代码是一个很好的代码,其中对话框工作得很好
关于android - 替代 setButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13268302/
我在我的 android 项目中使用此代码: alertDialog.setButton("OK", new DialogInterface.OnClickListener() { p
我制作了一款类似于打地鼠的游戏。你必须点击“x”而不是痣。我想随机更改“x”的位置,但出现以下错误“错误:找不到符号方法 getButton1()”(zufall 在德语中是随机的意思) 线程 zuf
我在我的 Eclipse Android 项目中使用这段代码 alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
我设置了自定义 AlertDialog(实际上是自定义 TimePickerDialog)。我正在使用 OnShowListener,根据条件更新按钮文本。我已将这段代码放在一个单独的方法中: pri
我有这个方法: alert.setButton(1, "OK", null); 但它不起作用,因为我在我的 sdk 上收到了这个警报: Description Resource Path Locati
我有以下场景:我在 UI 线程中显示 ProgressDialog,同时在后台线程中执行 Networkdiscovery。这很好用。该对话框有一个停止-按钮,因此用户可以决定是否要停止发现。 现在这
我是一名优秀的程序员,十分优秀!