Skip to content Skip to sidebar Skip to footer

Bubble Chat Issue Android Listview

Hi i am having a strange trouble, i am not gettings bubble for example you messeges on right and mine on left... when ever i call notifydatachanges it erases all the bubbles...plz

Solution 1:

You have not organised your chat data properly. Have a class that holds a chat message and its sender id.

classMessage{
   int senderId;
   String message;
}

Use this object to create the list of chat messages. Then in adapter's getview method do this

Message msg = messageList.get(position);
if (msg.getSenderId() == getMyId()) { // if its the message sent by me?// inflate right side layout.else// inflate left side layout.

Post a Comment for "Bubble Chat Issue Android Listview"