我正在做我的android项目。我创建了带有“是”和“否”按钮的对话框。如果我单击“是”,则应显示一个新对话框,其中包含可供选择的选项。我创建了带有选项的对话框。但是当我在我首先创建的对话框中单击“是”时无法显示它。我该怎么做?请帮忙。谢谢。
这是我创建的对话框的代码。当我在此对话框中单击“是”按钮时,我应该显示另一个对话框
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Low Memory\nYou want to send the file to server?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
finish();
}
});
AlertDialog alert = builder.create();
alert.show();