Activity class code:
Activity
conversationList = (ListView)findViewById(android.R.id.list); ConversationArrayAdapter conversationArrayAdapter=new Conver
I had the same problem and I just saw I had accidentally set:
@Override public boolean isEnabled(int position) { return false; }
on my CustomListViewAdapter class.
By changing this to:
return true;
I've managed to fix the problem. Just in case if someone has done the same mistake...