Hưởng Vũ
Hưởng Vũ

Reputation: 38

Custom Item Layout Bubbles chat like Messenger

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?

chat bubbles

Upvotes: 0

Views: 377

Answers (1)

SiSa
SiSa

Reputation: 2684

You can create 3 xml drawable:

  • one for first message with left-bottom, left-top and right-top border radius
  • second for inner messages with left-bottom and left-top border radius
  • third for last message with left-bottom, left-top and right-bottom border radius

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

Related Questions