Skip to content

Instantly share code, notes, and snippets.

AttachTagDialog attachTagDialog = new AttachTagDialog(getActivity(), new ArrayList(Arrays.asList(ResourcesManager.getStrArray(R.array.company_attach_list))));
attachTagDialog.show(new String[]{"中通"});
attachTagDialog.setOnConfirmClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
List<String> strings = attachTagDialog.getSelectedListName();
LogUtils.e("eeee",strings.toString());
attachTagDialog.dismiss();
}
});