tags:

views:

89

answers:

1

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?

Thanks,

Aleksander

+2  A: 

Ops, I've just found a solution:

    registerForContextMenu(getExpandableListView());
Aleksander O