Hi i am having a strange trouble, i am not gettings bubble for example you messege
You have not organised your chat data properly. Have a class that holds a chat message and its sender id.
class Message {
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.