I had this problem. Initially, the functionality of the "show context menu" worked, but when I added the normal "click" functionality, the context menu no longer worked.
, onClick() TextView Listview, ListView. , . , , Activity onCreate setOnItemClickListener() ListView. , :
registerForContextMenu(findViewById(R.id.list_item));
ListView listView = (ListView) findViewById(R.id.list_item);
listView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
}
});