ExpandableListView context menu

I am trying to add a context menu to mine ExpandableListView. I implemented onCreateContextMenu()and onContextItemSelected()but if I hold my finger on a menu item, the context menu will not appear. What's my mistake?

+4
source share
1 answer

Ops, I just found a solution:

    registerForContextMenu(getExpandableListView());
+4
source

Source: https://habr.com/ru/post/1745454/


All Articles