标签: android dialog android-alertdialog onclicklistener android-dialog
我创建了一个AlertDialog并从列表中添加了项目:
builder.setItems(items, new DialogInterface.OnClickListener() {
这样可行,但问题是我不想在单击某个项目时关闭该对话框。 有可能这样做吗?
答案 0 :(得分:1)
builder.setItems(items, null);
通常会使用AlertDialog进行操作,您应该检查源代码以确认。