Fixed non-responding shortcut-contextmenu (from arne)

pull/14/head
Sam Bosley 13 years ago
parent 694770687e
commit 89abb843f1

@ -391,6 +391,12 @@ public class FilterListActivity extends ListFragment {
getString(R.string.FLA_toast_onCreateShortcut, label), Toast.LENGTH_LONG).show();
}
@Override
public boolean onContextItemSelected(MenuItem item) {
// called when context menu appears
return onOptionsItemSelected(item);
}
@Override
public boolean onOptionsItemSelected(final MenuItem item) {
// handle my own menus

Loading…
Cancel
Save