Reputation: 38
I want to make chat bubbles like this chat bubbles.
I have an adapter to do everything like the picture, but I can't change the layout for the same . I want to make background of chat bubbles change when i add item like messenger app.
How can i make it?
Upvotes: 0
Views: 377
Reputation: 2684
You can create 3 xml drawable:
now in your adapter you can decide which drawable to use depending on the previus and next message of your adapters message list
For example if previus messages of current message in adapter is not from current user(the user who logged in to app), so you should choose the first drawable. And if the previus messages in adapter is from current user, so you should choose second second drawable. And if the previus message is from current user and the next message is not, so you should use third drawable
Upvotes: 1