gpt4 book ai didi

java - Android 对话框 OnClick 方法不起作用?

转载 作者:行者123 更新时间:2023-12-01 15:24:57 26 4
gpt4 key购买 nike

我在此类文件中构建了一个 AlertDialog,并且对话框显示正常,但是在执行单击时似乎没有调用这些方法。我究竟做错了什么?感谢您的帮助!

//AlertView Builder
final AlertDialog.Builder builder;
builder = new AlertDialog.Builder(this);
builder.setTitle(" ");
builder.setIcon(R.drawable.banner);
builder.setMessage("Share this picture using any of the below!");

builder.setPositiveButton("Email",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.out.print("Emailing...");
}
});

builder.setNeutralButton("Facebook",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.out.print("Facebooking...");
}
});

builder.setNegativeButton("Twitter",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.out.print("Tweeting...");
}
});

最佳答案

你期望它做什么?这些 block 中是否有您现在还没有的代码?

Android 默认情况下不会使用 System.out.print(); 进行任何操作 - 使用日志:

Log.d(getClass().getName(),"Facebooking...");

关于java - Android 对话框 OnClick 方法不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10291587/

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