Jim
Jim

Reputation: 377

Customising Mesibo Chat bubbles

We are using Mesibo for our live customer support. We have used their sample code from the GitHub.

So far it is working flawlessly for messaging and calls. We are able to customise colours, icons etc except their chat bubbles. Their chat bubbles needs some refinement so we want to replace them with our own for incoming and outgoing messages. However the documentation or sample code does not speak much about it.

Any help will be appreciated

Upvotes: 3

Views: 464

Answers (1)

mesibo
mesibo

Reputation: 4323

It is best to subclass MesiboMessagingFragment and use it instead of launching default user interface. That way you can customize virtually every aspect of mesibo UI.

  1. Subclass MesiboMessagingFragment
  2. implement MesiboRecycleViewHolder.Listener which is a wrapper around Android RecycleView functions.
  3. Render and return your view in Mesibo_onBindViewHolder()

Hope it helps! If requires, I can get you a sample code.

Upvotes: 1

Related Questions