use of ve.com.abicelis.remindy.app.dialogs.EditListItemAttachmentDialogFragment in project Remindy by abicelis.
the class ListItemAttachmentViewHolder method handleListItemEdit.
private void handleListItemEdit(boolean isANewItem) {
FragmentManager fm = ((AppCompatActivity) mActivity).getSupportFragmentManager();
EditListItemAttachmentDialogFragment dialog = EditListItemAttachmentDialogFragment.newInstance(isANewItem, mText.getText().toString());
dialog.setListener(this);
dialog.show(fm, "EditLinkAttachmentDialogFragment");
}
Aggregations