Skip to content

Instantly share code, notes, and snippets.

@qs-lll
Created August 2, 2021 09:25
Show Gist options
  • Save qs-lll/60b62c1367bac878bdc7ee2d0ef2841e to your computer and use it in GitHub Desktop.
Save qs-lll/60b62c1367bac878bdc7ee2d0ef2841e to your computer and use it in GitHub Desktop.
选择挂靠公司
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();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment