I have a list view. I have added an onclick
method in the adapter getview
function for the row of listview and it works fine.
Now I have added a context menu:
registerForContextMenu(lv);
and have implemented onCreateContextMenu
and onContextItemSelected
But the longclick is not working . It is taken as single click and does the onclick functionality
I even added android:longClickable="true"
for the xml file inflated for the listview row.
It also didn't help.