如何从它调用的适配器中解除材料对话框(afollestad)?

时间:2017-08-29 04:32:29

标签: android dialog alertdialog

如何在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();

1 个答案:

答案 0 :(得分:0)

您可以将Listener用于此目的