{"id":"89514735-456c-4d10-862f-154a033dd350","shortId":"g7dERC","kind":"skill","title":"cometchat-android-v5-components","tagline":"Complete catalog of CometChat Android UI Kit v5 components. Reference before writing integration code — never invent component names.","description":"> **Companion skills:** `cometchat-android-v5-core` covers initialization and login;\n> `cometchat-android-v5-placement` covers where to put these components;\n> `cometchat-android-v5-customization` covers how to modify component behavior.\n\n## Purpose\n\nThis is the single source of truth for CometChat Android UI Kit v5 component names, key methods, and usage. **Check this catalog before writing any CometChat view code.** If a component is not listed here, it does not exist in the UI Kit.\n\nAll components extend `MaterialCardView` and can be used in XML layouts or created programmatically. They follow a consistent pattern: set a `User` or `Group` object, configure visibility/style via setters, and attach callbacks for user interactions.\n\n\n---\n\n## Use this skill when\n\n- Writing code that uses any `CometChat*` view\n- Looking up component names, methods, or XML attributes\n- Composing multiple components together (e.g., message header + list + composer)\n- \"What components does CometChat have?\"\n- \"How do I use CometChatConversations?\"\n\n## Do not use this skill when\n\n- Setting up init/login → use `cometchat-android-v5-core`\n- Customizing themes/colors → use `cometchat-android-v5-theming`\n- Writing custom message templates → use `cometchat-android-v5-customization`\n\n---\n\n## 1. Core messaging components\n\nThese are the components you use to build a chat experience. Most integrations use some combination of these.\n\n### CometChatConversations\n\nRenders a scrollable list of the logged-in user's conversations (both 1:1 and group).\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setOnItemClick(OnItemClick<Conversation>)` | Callback | Called when user taps a conversation |\n| `setSelectionMode(UIKitConstants.SelectionMode)` | Config | `NONE`, `SINGLE`, `MULTIPLE` |\n| `setSearchBoxVisibility(int)` | Visibility | Show/hide the search bar |\n| `setUserStatusVisibility(int)` | Visibility | Show/hide online status indicators |\n| `setReceiptsVisibility(int)` | Visibility | Show/hide read receipts |\n| `setDeleteConversationOptionVisibility(int)` | Visibility | Show/hide delete option on swipe |\n| `setBackIconVisibility(int)` | Visibility | Show/hide back button |\n| `setOnError(OnError)` | Callback | Error handler |\n| `setOnLoad(OnLoad<Conversation>)` | Callback | Called when conversations are loaded |\n| `setOnEmpty(OnEmpty)` | Callback | Called when list is empty |\n\n**XML usage:**\n```xml\n<com.cometchat.chatuikit.conversations.CometChatConversations\n    android:id=\"@+id/conversations\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\" />\n```\n\n**Java:**\n```java\nCometChatConversations conversations = findViewById(R.id.conversations);\nconversations.setOnItemClick((view, position, conversation) -> {\n    // Navigate to message screen with conversation.getConversationWith()\n});\n```\n\n**Kotlin:**\n```kotlin\nval conversations = findViewById<CometChatConversations>(R.id.conversations)\nconversations.setOnItemClick { view, position, conversation ->\n    // Navigate to message screen with conversation.conversationWith\n}\n```\n\n---\n\n### CometChatMessageList\n\nRenders messages for a specific user or group conversation. The main chat area.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setUser(User)` | Config | Show messages with this user (mutually exclusive with `setGroup`) |\n| `setGroup(Group)` | Config | Show messages in this group (mutually exclusive with `setUser`) |\n| `setParentMessage(long)` | Config | If set, shows only thread replies (note: list takes the parent ID as `long` via `setParentMessage`, NOT `setParentMessageId`) |\n| `setOnThreadRepliesClick(ThreadReplyClick)` | Callback | Called when \"Reply in Thread\" is tapped |\n| `setOnError(OnError)` | Callback | Error handler |\n| `setOnLoad(OnLoad<BaseMessage>)` | Callback | Called when messages are loaded |\n| `setReplyInThreadOptionVisibility(int)` | Visibility | Show/hide thread reply option |\n| `setReplyOptionVisibility(int)` | Visibility | Show/hide reply option |\n| `setCopyMessageOptionVisibility(int)` | Visibility | Show/hide copy option |\n| `setEditMessageOptionVisibility(int)` | Visibility | Show/hide edit option |\n| `setDeleteMessageOptionVisibility(int)` | Visibility | Show/hide delete option |\n| `setReceiptsVisibility(int)` | Visibility | Show/hide read receipts |\n| `setAvatarVisibility(int)` | Visibility | Show/hide sender avatars |\n| `setTextFormatters(List<CometChatTextFormatter>)` | Config | Custom text formatters |\n| `setTemplates(List<CometChatMessageTemplate>)` | Config | Custom message bubble templates |\n\n**Java:**\n```java\nCometChatMessageList messageList = findViewById(R.id.messageList);\nmessageList.setUser(user);  // or messageList.setGroup(group);\n```\n\n**Kotlin:**\n```kotlin\nval messageList = findViewById<CometChatMessageList>(R.id.messageList)\nmessageList.setUser(user)  // or messageList.setGroup(group)\n```\n\n---\n\n### CometChatMessageComposer\n\nA text input with send button, attachment options, emoji, and voice note support. Sends messages to the specified user or group.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setUser(User)` | Config | Send messages to this user |\n| `setGroup(Group)` | Config | Send messages to this group |\n| `setParentMessageId(long)` | Config | Thread mode — sends replies to this message |\n| `setOnSendButtonClick(SendButtonClick)` | Callback | Custom send button handler |\n| `setOnError(OnError)` | Callback | Error handler |\n| `setAttachmentButtonVisibility(int)` | Visibility | Show/hide attachment button |\n| `setVoiceNoteButtonVisibility(int)` | Visibility | Show/hide voice note button |\n| `setSendButtonVisibility(int)` | Visibility | Show/hide send button |\n| `setHeaderView(View)` | Custom view | Custom view above the composer |\n| `setFooterView(View)` | Custom view | Custom view below the composer |\n| `setAuxiliaryButtonView(View)` | Custom view | Custom auxiliary button (takes a plain `View`) |\n| `disableTypingEvents(boolean)` | Config | Disable typing indicators (note: no `set` prefix) |\n| `setDisableMentions(boolean)` | Config | Disable @mentions |\n\n**Java:**\n```java\nCometChatMessageComposer composer = findViewById(R.id.composer);\ncomposer.setUser(user);  // or composer.setGroup(group);\n```\n\n**Kotlin:**\n```kotlin\nval composer = findViewById<CometChatMessageComposer>(R.id.composer)\ncomposer.setUser(user)  // or composer.setGroup(group)\n```\n\n---\n\n### CometChatMessageHeader\n\nDisplays the name, avatar, and status of the user or group at the top of a message view.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setUser(User)` | Config | Show header for this user |\n| `setGroup(Group)` | Config | Show header for this group |\n| `setBackIconVisibility(int)` | Visibility | Show/hide back button |\n| `setOnBackPress(OnBackPress)` | Callback | Back button handler |\n| `setUserStatusVisibility(int)` | Visibility | Show/hide online status |\n| `setVideoCallButtonVisibility(int)` | Visibility | Show/hide video call button |\n| `setVoiceCallButtonVisibility(int)` | Visibility | Show/hide voice call button |\n| `setSubtitleView(Function3)` | Custom view | Custom subtitle view |\n| `setTrailingView(Function3)` | Custom view | Custom trailing view |\n| `setLeadingView(Function3)` | Custom view | Custom leading view |\n\n**Java:**\n```java\nCometChatMessageHeader header = findViewById(R.id.header);\nheader.setUser(user);\nheader.setBackIconVisibility(View.VISIBLE);\nheader.setOnBackPress(() -> finish());\n```\n\n**Kotlin:**\n```kotlin\nval header = findViewById<CometChatMessageHeader>(R.id.header)\nheader.setUser(user)\nheader.setBackIconVisibility(View.VISIBLE)\nheader.setOnBackPress { finish() }\n```\n\n---\n\n## 2. List components\n\n### CometChatUsers\n\nRenders a scrollable list of users with alphabetical sticky headers.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setOnItemClick(OnItemClick<User>)` | Callback | Called when user taps a user |\n| `setSelectionMode(UIKitConstants.SelectionMode)` | Config | `NONE`, `SINGLE`, `MULTIPLE` |\n| `setSearchBoxVisibility(int)` | Visibility | Show/hide search bar |\n| `setUserStatusVisibility(int)` | Visibility | Show/hide online status |\n| `setOnSelection(OnSelection<User>)` | Callback | Called when selection changes |\n\n### CometChatGroups\n\nRenders a scrollable list of groups.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setOnItemClick(OnItemClick<Group>)` | Callback | Called when user taps a group |\n| `setSelectionMode(UIKitConstants.SelectionMode)` | Config | `NONE`, `SINGLE`, `MULTIPLE` |\n| `setSearchBoxVisibility(int)` | Visibility | Show/hide search bar |\n| `setOnSelection(OnSelection<Group>)` | Callback | Called when selection changes |\n\n### CometChatGroupMembers\n\nRenders the member list for a specific group.\n\n**Key methods:**\n\n| Method | Type | Description |\n|---|---|---|\n| `setGroup(Group)` | Config | Required — the group to show members for |\n| `setOnItemClick(OnItemClick<GroupMember>)` | Callback | Called when user taps a member |\n| `setSelectionMode(UIKitConstants.SelectionMode)` | Config | `NONE`, `SINGLE`, `MULTIPLE` |\n\n---\n\n## 3. Call components\n\n### CometChatCallLogs\n\nRenders a list of past calls with duration, type, and timestamp.\n\n### CometChatIncomingCall\n\nIncoming call notification banner with accept/reject buttons. Typically added to your root Activity layout.\n\n### CometChatOutgoingCall\n\nOutgoing call screen with ringing indicator.\n\n### CometChatOngoingCall\n\nActive call view (video/audio, controls).\n\n---\n\n## 4. Other components\n\n### CometChatSearch\n\nSearch component for finding conversations and messages.\n\n### CometChatReactionList\n\nFull reaction list showing who reacted with which emoji.\n\n### CometChatThreadHeader\n\nThread header with parent message preview and reply count.\n\n---\n\n## 5. Shared views (building blocks)\n\nThese are lower-level views used inside the main components:\n\n| View | Description |\n|---|---|\n| `CometChatAvatar` | User/group avatar (image + fallback initials) |\n| `CometChatBadge` | Unread count badge |\n| `CometChatStatusIndicator` | Online/offline status dot |\n| `CometChatMessageReceipt` | Message delivery/read receipt icons |\n| `CometChatDate` | Formatted date display |\n| `CometChatMessageBubble` | Message bubble container |\n| `CometChatEmojiKeyboard` | Emoji picker grid |\n| `CometChatConfirmDialog` | Confirmation dialog |\n| `CometChatPopupMenu` | Context menu / popup menu |\n\n---\n\n## 6. Composition patterns\n\n### Two-pane chat (conversation list + message view)\n\nThe most common pattern — conversation list on one side, active chat on the other. On phones, this is typically two Activities or Fragments with navigation between them.\n\n**Java:**\n```java\n// In ConversationsFragment or Activity\nCometChatConversations conversations = findViewById(R.id.conversations);\nconversations.setOnItemClick((view, position, conversation) -> {\n    Intent intent = new Intent(this, MessagesActivity.class);\n    if (conversation.getConversationType().equals(\"user\")) {\n        intent.putExtra(\"uid\", ((User) conversation.getConversationWith()).getUid());\n    } else {\n        intent.putExtra(\"guid\", ((Group) conversation.getConversationWith()).getGuid());\n    }\n    startActivity(intent);\n});\n\n// In MessagesActivity\nCometChatMessageHeader header = findViewById(R.id.header);\nCometChatMessageList messageList = findViewById(R.id.messageList);\nCometChatMessageComposer composer = findViewById(R.id.composer);\n\nString uid = getIntent().getStringExtra(\"uid\");\nif (uid != null) {\n    CometChat.getUser(uid, new CometChat.CallbackListener<User>() {\n        @Override\n        public void onSuccess(User user) {\n            header.setUser(user);\n            messageList.setUser(user);\n            composer.setUser(user);\n        }\n\n        @Override\n        public void onError(CometChatException e) { }\n    });\n}\n```\n\n**Kotlin:**\n```kotlin\n// In ConversationsFragment or Activity\nval conversations = findViewById<CometChatConversations>(R.id.conversations)\nconversations.setOnItemClick { view, position, conversation ->\n    val intent = Intent(this, MessagesActivity::class.java)\n    when (conversation.conversationType) {\n        \"user\" -> intent.putExtra(\"uid\", (conversation.conversationWith as User).uid)\n        \"group\" -> intent.putExtra(\"guid\", (conversation.conversationWith as Group).guid)\n    }\n    startActivity(intent)\n}\n\n// In MessagesActivity\nval header = findViewById<CometChatMessageHeader>(R.id.header)\nval messageList = findViewById<CometChatMessageList>(R.id.messageList)\nval composer = findViewById<CometChatMessageComposer>(R.id.composer)\n\nval uid = intent.getStringExtra(\"uid\")\nuid?.let {\n    CometChat.getUser(it, object : CometChat.CallbackListener<User>() {\n        override fun onSuccess(user: User) {\n            header.setUser(user)\n            messageList.setUser(user)\n            composer.setUser(user)\n        }\n        override fun onError(e: CometChatException) { }\n    })\n}\n```\n\n### Messages Activity XML layout\n\n```xml\n<LinearLayout\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\">\n\n    <com.cometchat.chatuikit.messageheader.CometChatMessageHeader\n        android:id=\"@+id/header\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\" />\n\n    <com.cometchat.chatuikit.messagelist.CometChatMessageList\n        android:id=\"@+id/messageList\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"0dp\"\n        android:layout_weight=\"1\" />\n\n    <com.cometchat.chatuikit.messagecomposer.CometChatMessageComposer\n        android:id=\"@+id/composer\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\" />\n\n</LinearLayout>\n```\n\n### Bottom navigation with tabs (Conversations + Users + Groups + Calls)\n\n```java\n// In HomeActivity — switch fragments based on bottom nav selection\nbinding.bottomNavigationView.setOnItemSelectedListener(item -> {\n    Fragment fragment;\n    if (item.getItemId() == R.id.nav_chats) {\n        fragment = new ChatsFragment();\n    } else if (item.getItemId() == R.id.nav_users) {\n        fragment = new UsersFragment();\n    } else if (item.getItemId() == R.id.nav_groups) {\n        fragment = new GroupsFragment();\n    } else if (item.getItemId() == R.id.nav_calls) {\n        fragment = new CallsFragment();\n    } else {\n        return false;\n    }\n    getSupportFragmentManager().beginTransaction()\n        .replace(R.id.fragment_container, fragment)\n        .commit();\n    return true;\n});\n```\n\n---\n\n## Hard rules\n\n- **Never invent component names.** If it's not in this catalog, it doesn't exist.\n- **`setUser()` and `setGroup()` are mutually exclusive.** Set one or the other, never both.\n- **Components require a logged-in user.** Always verify `CometChatUIKit.getLoggedInUser() != null` before mounting.\n- **All components extend `MaterialCardView`.** They can be used in XML or created programmatically.\n- **Thread mode** — `CometChatMessageList.setParentMessage(long)` (no `Id` suffix on the list) and `CometChatMessageComposer.setParentMessageId(long)`. Both must point to the same parent message ID. Without them, the list and composer show the main conversation, not the thread.","tags":["cometchat","android","components","skills","agent-skills","ai-agent","chat","claude-code","cursor","messaging","nextjs","react"],"capabilities":["skill","source-cometchat","skill-cometchat-android-v5-components","topic-agent-skills","topic-ai-agent","topic-chat","topic-claude-code","topic-cometchat","topic-cursor","topic-messaging","topic-nextjs","topic-react","topic-react-native","topic-ui-kit"],"categories":["cometchat-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/cometchat/cometchat-skills/cometchat-android-v5-components","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add cometchat/cometchat-skills","source_repo":"https://github.com/cometchat/cometchat-skills","install_from":"skills.sh"}},"qualityScore":"0.463","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 27 github stars · SKILL.md body (15,224 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:04:44.629Z","embedding":null,"createdAt":"2026-05-07T13:05:03.283Z","updatedAt":"2026-05-18T19:04:44.629Z","lastSeenAt":"2026-05-18T19:04:44.629Z","tsv":"'1':207,243,244 '2':789 '3':921 '4':964 '5':995 '6':1052 'accept/reject':942 'activ':949,959,1072,1083,1095,1176,1250 'ad':945 'alphabet':800 'alway':1356 'android':3,10,28,37,48,67,186,194,204 'area':370 'attach':131,529,591 'attribut':154 'auxiliari':629 'avatar':486,676,1015 'back':299,716,721 'badg':1022 'banner':940 'bar':273,828,874 'base':1267 'begintransact':1311 'behavior':56 'binding.bottomnavigationview.setonitemselectedlistener':1272 'block':999 'boolean':636,646 'bottom':1254,1269 'bubbl':498,1038 'build':218,998 'button':300,528,580,592,599,605,630,717,722,736,743,943 'call':255,309,317,424,439,735,742,811,838,857,878,909,922,930,938,953,960,1261,1303 'callback':132,254,303,308,316,423,433,438,577,584,720,810,837,856,877,908 'callsfrag':1306 'catalog':7,79,1331 'chang':841,881 'chat':220,369,1058,1073,1279 'chatsfrag':1282 'check':77 'class.java':1190 'code':19,85,141 'combin':226 'cometchat':2,9,27,36,47,66,83,145,167,185,193,203 'cometchat-android-v5-components':1 'cometchat-android-v5-core':26,184 'cometchat-android-v5-customization':46,202 'cometchat-android-v5-placement':35 'cometchat-android-v5-theming':192 'cometchat.callbacklistener':1152,1232 'cometchat.getuser':1149,1229 'cometchatavatar':1013 'cometchatbadg':1019 'cometchatcalllog':924 'cometchatconfirmdialog':1044 'cometchatconvers':173,229,327,1096 'cometchatd':1032 'cometchatemojikeyboard':1040 'cometchatexcept':1169,1248 'cometchatgroup':842 'cometchatgroupmemb':882 'cometchatincomingcal':936 'cometchatmessagebubbl':1036 'cometchatmessagecompos':522,652,1137 'cometchatmessagecomposer.setparentmessageid':1386 'cometchatmessagehead':672,767,1129 'cometchatmessagelist':357,502,1133 'cometchatmessagelist.setparentmessage':1377 'cometchatmessagereceipt':1027 'cometchatongoingcal':958 'cometchatoutgoingcal':951 'cometchatpopupmenu':1047 'cometchatreactionlist':975 'cometchatsearch':967 'cometchatstatusind':1023 'cometchatthreadhead':985 'cometchatuikit.getloggedinuser':1358 'cometchatus':792 'commit':1316 'common':1065 'companion':24 'complet':6 'compon':5,14,22,45,55,71,88,102,149,157,165,210,214,791,923,966,969,1010,1323,1349,1363 'compos':155,163,614,623,653,664,1138,1220,1402 'composer.setgroup':659,670 'composer.setuser':656,667,1163,1242 'composit':1053 'config':263,378,390,402,489,495,551,559,567,637,647,698,706,819,865,898,917 'configur':126 'confirm':1045 'consist':118 'contain':1039,1314 'context':1048 'control':963 'convers':241,260,311,328,334,344,350,366,972,1059,1067,1097,1103,1178,1184,1258,1406 'conversation.conversationtype':1192 'conversation.conversationwith':356,1196,1203 'conversation.getconversationtype':1111 'conversation.getconversationwith':340,1117,1123 'conversations.setonitemclick':331,347,1100,1181 'conversationsfrag':1093,1174 'copi':461 'core':30,188,208 'count':994,1021 'cover':31,40,51 'creat':113,1373 'custom':50,189,198,206,490,496,578,608,610,617,619,626,628,746,748,753,755,760,762 'date':1034 'delet':291,473 'delivery/read':1029 'descript':251,375,548,695,807,853,895,1012 'dialog':1046 'disabl':638,648 'disabletypingev':635 'display':673,1035 'doesn':1333 'dot':1026 'durat':932 'e':1170,1247 'e.g':159 'edit':467 'els':1119,1283,1291,1299,1307 'emoji':531,984,1041 'empti':321 'equal':1112 'error':304,434,585 'exclus':385,397,1341 'exist':96,1335 'experi':221 'extend':103,1364 'fallback':1017 'fals':1309 'find':971 'findviewbyid':329,345,504,515,654,665,769,781,1098,1131,1135,1139,1179,1213,1217,1221 'finish':776,788 'follow':116 'format':1033 'formatt':492 'fragment':1085,1266,1274,1275,1280,1288,1296,1304,1315 'full':976 'fun':1234,1245 'function3':745,752,759 'getguid':1124 'getint':1143 'getstringextra':1144 'getsupportfragmentmanag':1310 'getuid':1118 'grid':1043 'group':124,246,365,389,395,510,521,543,558,564,660,671,683,705,711,848,862,890,897,901,1122,1200,1205,1260,1295 'groupsfrag':1298 'guid':1121,1202,1206 'handler':305,435,581,586,723 'hard':1319 'header':161,700,708,768,780,802,987,1130,1212 'header.setbackiconvisibility':773,785 'header.setonbackpress':775,787 'header.setuser':771,783,1159,1238 'homeact':1264 'icon':1031 'id':414,1380,1396 'imag':1016 'incom':937 'indic':280,640,957 'init/login':182 'initi':32,1018 'input':525 'insid':1007 'int':268,275,282,288,296,445,452,458,464,470,476,482,588,594,601,713,725,731,738,824,830,870 'integr':18,223 'intent':1104,1105,1107,1126,1186,1187,1208 'intent.getstringextra':1225 'intent.putextra':1114,1120,1194,1201 'interact':135 'invent':21,1322 'item':1273 'item.getitemid':1277,1285,1293,1301 'java':325,326,500,501,650,651,765,766,1090,1091,1262 'key':73,247,371,544,691,803,849,891 'kit':12,69,100 'kotlin':341,342,511,512,661,662,777,778,1171,1172 'layout':111,950,1252 'lead':763 'let':1228 'level':1004 'list':91,162,233,319,410,488,494,790,796,846,886,927,978,1060,1068,1384,1400 'load':313,443 'log':237,1353 'logged-in':236,1352 'login':34 'long':401,416,566,1378,1387 'look':147 'lower':1003 'lower-level':1002 'main':368,1009,1405 'materialcardview':104,1365 'member':885,904,914 'mention':649 'menu':1049,1051 'messag':160,199,209,337,353,359,380,392,441,497,537,553,561,574,689,974,990,1028,1037,1061,1249,1395 'messagelist':503,514,1134,1216 'messagelist.setgroup':509,520 'messagelist.setuser':506,517,1161,1240 'messagesact':1128,1189,1210 'messagesactivity.class':1109 'method':74,151,248,249,372,373,545,546,692,693,804,805,850,851,892,893 'mode':569,1376 'modifi':54 'mount':1361 'multipl':156,266,822,868,920 'must':1389 'mutual':384,396,1340 'name':23,72,150,675,1324 'nav':1270 'navig':335,351,1087,1255 'never':20,1321,1347 'new':1106,1151,1281,1289,1297,1305 'none':264,820,866,918 'note':409,534,598,641 'notif':939 'null':1148,1359 'object':125,1231 'onbackpress':719 'one':1070,1343 'onempti':315 'onerror':302,432,583,1168,1246 'onitemclick':253,809,855,907 'onlin':278,728,833 'online/offline':1024 'onload':307,437 'onselect':836,876 'onsuccess':1156,1235 'option':292,450,456,462,468,474,530 'outgo':952 'overrid':1153,1165,1233,1244 'pane':1057 'parent':413,989,1394 'past':929 'pattern':119,1054,1066 'phone':1078 'picker':1042 'placement':39 'plain':633 'point':1390 'popup':1050 'posit':333,349,1102,1183 'prefix':644 'preview':991 'programmat':114,1374 'public':1154,1166 'purpos':57 'put':43 'r.id.composer':655,666,1140,1222 'r.id.conversations':330,346,1099,1180 'r.id.fragment':1313 'r.id.header':770,782,1132,1214 'r.id.messagelist':505,516,1136,1218 'r.id.nav':1278,1286,1294,1302 'react':981 'reaction':977 'read':285,479 'receipt':286,480,1030 'refer':15 'render':230,358,793,843,883,925 'replac':1312 'repli':408,426,449,455,571,993 'requir':899,1350 'return':1308,1317 'ring':956 'root':948 'rule':1320 'screen':338,354,954 'scrollabl':232,795,845 'search':272,827,873,968 'select':840,880,1271 'send':527,536,552,560,570,579,604 'sendbuttonclick':576 'sender':485 'set':120,180,404,643,1342 'setattachmentbuttonvis':587 'setauxiliarybuttonview':624 'setavatarvis':481 'setbackiconvis':295,712 'setcopymessageoptionvis':457 'setdeleteconversationoptionvis':287 'setdeletemessageoptionvis':469 'setdisablement':645 'seteditmessageoptionvis':463 'setfooterview':615 'setgroup':387,388,557,704,896,1338 'setheaderview':606 'setleadingview':758 'setonbackpress':718 'setonempti':314 'setonerror':301,431,582 'setonitemclick':252,808,854,906 'setonload':306,436 'setonselect':835,875 'setonsendbuttonclick':575 'setonthreadrepliesclick':421 'setparentmessag':400,418 'setparentmessageid':420,565 'setreceiptsvis':281,475 'setreplyinthreadoptionvis':444 'setreplyoptionvis':451 'setsearchboxvis':267,823,869 'setselectionmod':261,817,863,915 'setsendbuttonvis':600 'setsubtitleview':744 'settempl':493 'setter':129 'settextformatt':487 'settrailingview':751 'setus':376,399,549,696,1336 'setuserstatusvis':274,724,829 'setvideocallbuttonvis':730 'setvoicecallbuttonvis':737 'setvoicenotebuttonvis':593 'share':996 'show':379,391,405,699,707,903,979,1403 'show/hide':270,277,284,290,298,447,454,460,466,472,478,484,590,596,603,715,727,733,740,826,832,872 'side':1071 'singl':61,265,821,867,919 'skill':25,138,178 'skill-cometchat-android-v5-components' 'sourc':62 'source-cometchat' 'specif':362,889 'specifi':540 'startact':1125,1207 'status':279,678,729,834,1025 'sticki':801 'string':1141 'subtitl':749 'suffix':1381 'support':535 'swipe':294 'switch':1265 'tab':1257 'take':411,631 'tap':258,430,814,860,912 'templat':200,499 'text':491,524 'theme':196 'themes/colors':190 'thread':407,428,448,568,986,1375,1409 'threadreplyclick':422 'timestamp':935 'togeth':158 'top':686 'topic-agent-skills' 'topic-ai-agent' 'topic-chat' 'topic-claude-code' 'topic-cometchat' 'topic-cursor' 'topic-messaging' 'topic-nextjs' 'topic-react' 'topic-react-native' 'topic-ui-kit' 'trail':756 'true':1318 'truth':64 'two':1056,1082 'two-pan':1055 'type':250,374,547,639,694,806,852,894,933 'typic':944,1081 'ui':11,68,99 'uid':1115,1142,1145,1147,1150,1195,1199,1224,1226,1227 'uikitconstants.selectionmode':262,818,864,916 'unread':1020 'usag':76,323 'use':108,136,143,172,176,183,191,201,216,224,1006,1369 'user':122,134,239,257,363,377,383,507,518,541,550,556,657,668,681,697,703,772,784,798,813,816,859,911,1113,1116,1157,1158,1160,1162,1164,1193,1198,1236,1237,1239,1241,1243,1259,1287,1355 'user/group':1014 'usersfrag':1290 'v5':4,13,29,38,49,70,187,195,205 'val':343,513,663,779,1177,1185,1211,1215,1219,1223 'verifi':1357 'via':128,417 'video':734 'video/audio':962 'view':84,146,332,348,607,609,611,616,618,620,625,627,634,690,747,750,754,757,761,764,961,997,1005,1011,1062,1101,1182 'view.visible':774,786 'visibility/style':127 'visibl':269,276,283,289,297,446,453,459,465,471,477,483,589,595,602,714,726,732,739,825,831,871 'voic':533,597,741 'void':1155,1167 'without':1397 'write':17,81,140,197 'xml':110,153,322,324,1251,1253,1371","prices":[{"id":"9d847781-5895-41c2-bc89-6f3dd94b6ea5","listingId":"89514735-456c-4d10-862f-154a033dd350","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"cometchat","category":"cometchat-skills","install_from":"skills.sh"},"createdAt":"2026-05-07T13:05:03.283Z"}],"sources":[{"listingId":"89514735-456c-4d10-862f-154a033dd350","source":"github","sourceId":"cometchat/cometchat-skills/cometchat-android-v5-components","sourceUrl":"https://github.com/cometchat/cometchat-skills/tree/main/skills/cometchat-android-v5-components","isPrimary":false,"firstSeenAt":"2026-05-07T13:05:03.283Z","lastSeenAt":"2026-05-18T19:04:44.629Z"}],"details":{"listingId":"89514735-456c-4d10-862f-154a033dd350","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"cometchat","slug":"cometchat-android-v5-components","github":{"repo":"cometchat/cometchat-skills","stars":27,"topics":["agent-skills","ai-agent","chat","claude-code","cometchat","cursor","messaging","nextjs","react","react-native","ui-kit"],"license":null,"html_url":"https://github.com/cometchat/cometchat-skills","pushed_at":"2026-05-18T05:04:24Z","description":"Add CometChat chat to any React, Next.js, React Native, Angular, Android, iOS, or Flutter project through your AI coding agent. Works with Claude Code, Cursor, Codex, VS Code Copilot, Windsurf, Cline, Kiro, and 50+ more agents.","skill_md_sha":"49a2a0f67af301ae1f7b61b3d4d5c5c650109276","skill_md_path":"skills/cometchat-android-v5-components/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/cometchat/cometchat-skills/tree/main/skills/cometchat-android-v5-components"},"layout":"multi","source":"github","category":"cometchat-skills","frontmatter":{"name":"cometchat-android-v5-components","license":"MIT","description":"Complete catalog of CometChat Android UI Kit v5 components. Reference before writing integration code — never invent component names.","compatibility":"Android 7.0+; Java 8+; Kotlin 1.8+; com.cometchat:chat-uikit-android:5.x"},"skills_sh_url":"https://skills.sh/cometchat/cometchat-skills/cometchat-android-v5-components"},"updatedAt":"2026-05-18T19:04:44.629Z"}}