任何人都知道如何在android.currently中实现本地通知我正在Android2.3.1上工作请帮助实现它....
提前致谢---
答案 0 :(得分:2)
我从您的评论中看来,您正在寻找对话而不是通知。此代码将为您提供一个带有是和否按钮的对话框。
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Put your question here?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// put your code here
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// put your code here
dialog.cancel();
}
});
AlertDialog alertDialog = builder.create();
alertDialog.show();