UIKit Android v3
UIKit Android
UIKit
Android
Version 3
Home
/
UIKit
/
Android
/
Customization
Update or change an item in a list
Copy link
All UI in the form of lists in Sendbird UIKit are implemented using RecyclerView
Note:
MessageListAdapter
is used as an example in the codes below to show how to customize and add a new message type to the message list. You can replaceMessageListAdapter
with any other adapters used in UIKit to customize list items in fragments that use a list view.
- You need to inherit
MessageListAdapter
first and overrideonCreateViewHolder()
andonBindViewHolder()
methods like you would implementRecyclerView.Adapter
in Android.
- Set the custom adapter in the
onBeforeReady()
method.