Reputation: 19378
I'm trying to add a context menu to my ExpandableListView
. I've implemented onCreateContextMenu()
and onContextItemSelected()
but if I hold my finger on a menu item context menu doesn't appear. What's my mistake?
Upvotes: 4
Views: 1597
Reputation: 19378
Ops, I've just found a solution:
registerForContextMenu(getExpandableListView());
Upvotes: 4