Chat UIKit Android View v3
Chat UIKit Android View
Chat UIKit
Android View
Version 3
Filter user list
Copy link
You can filter and display only certain users in the user list managed by the UIKit. By customizing the user list, you can create a more tailored experience for your application.
User attributes
Copy link
The users of the UIKit inherits from the UserInfo
interface. The following table lists the properties of UserInfo
.
Properties | Type | Description |
---|---|---|
userId | String | The unique ID of the user. |
nickname | String? | The user's nickname. (Default: |
profileUrl | String? | The URL of the user's profile image. (Default: |
Filter user list
Copy link
You can filter the user list by creating a custom adapter after inheriting from the CreateChannelUserListAdapter
. To learn how to apply custom adapters, refer to this page.
KotlinJava
For an in-depth practical demonstration, see our sample code.
On this page