use of com.github.pockethub.android.core.issue.IssueFilter in project PocketHub by pockethub.
the class FiltersViewFragment method onItemLongClick.
@Override
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
IssueFilter filter = (IssueFilter) parent.getItemAtPosition(position);
Bundle args = new Bundle();
args.putParcelable(ARG_FILTER, filter);
ConfirmDialogFragment.show(getActivity(), REQUEST_DELETE, getString(R.string.confirm_bookmark_delete_title), getString(R.string.confirm_bookmark_delete_message), args);
return true;
}
Aggregations