Bubble Chat issue Android listview

后端 未结 1 1327
半阙折子戏
半阙折子戏 2021-01-26 00:21

\"enter

Hi i am having a strange trouble, i am not gettings bubble for example you messege

相关标签:
1条回答
  • 2021-01-26 00:25

    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.
    
    0 讨论(0)
提交回复
热议问题