I try all this day to resolve this error. I don\'t understand why my logcat prints:
05-06 21:45:59.559:
ERROR/ConversationList(9023): We have
chats... 05-06 21:45:
Had the same problem, needed to change the custom adapter from:
ListAdapter adapter = new ArrayAdapter(
this,
R.layout.conversation_item,
chatList
);
getListView().setAdapter(adapter);
to:
ListAdapter adapter = new ArrayAdapter(
this,
R.layout.conversation_item,
R.id.sometextview_from_the_layout,
chatList
);
getListView().setAdapter(adapter);
I think the selected TextView will be used to generate the rowid, which may explain its need to be unique, but I'm not sure yet.