如何在materialDialog.dismiss()
内调用DialogAdapter(mContext,nListId,(ArrayList<String>)imagelist)
,以便通过适配器解除对话框?
我已尝试将materialDialog
作为参数传递给Dialogadapter
,但在materialDialog.dismiss()
中调用OnBindViewHolder()
会给出空指针异常。
这是材料对话库的链接:https://github.com/afollestad/material-dialogs
materialDialog = new MaterialDialog.Builder(mContext)
.title("Choose Node")
.adapter(new DialogAdapter(mContext,nListId,(ArrayList<String>)imagelist,materialDialog), null)
.positiveText("YES")
.negativeText("CANCEL")
.build();
.show();
答案 0 :(得分:0)
您可以将Listener用于此目的