ChatKit
ChatKit copied to clipboard
Android library. Flexible components for chat UI implementation with flexible possibilities for styling, customizing and data management. Made by Stfalcon
I have notices that if you set the layout id of MessageInput and MessagesList widget to anything else rather than the input (for MessageInput) and messagesList (for MessagesList) this error...
LayoutManager is set twice. Once on setAdapter and once onAttachToWindow (depending on the order). This makes it difficult to work with the LayoutManager. https://github.com/stfalcon-studio/ChatKit/blob/243e8908de999a9111b2c4192808488f2c946fd0/chatkit/src/main/java/com/stfalcon/chatkit/dialogs/DialogsList.java#L50-L59 https://github.com/stfalcon-studio/ChatKit/blob/243e8908de999a9111b2c4192808488f2c946fd0/chatkit/src/main/java/com/stfalcon/chatkit/dialogs/DialogsList.java#L89-L102
I'm handling selection mode with my `toggleSelectedSection` function. When I select prior a message which will be then updated via `adapter.update`, then adapter unselect this message, but doesn't trigger this...
Hi! I wanted to know if anyone ahs done this kind of relation with android databinding and the app:incomingBubbleDrawable attribute without dying in the preocess. I am tried something like...
change deprecated "compile" declaration by "implementation"
I need a trigger when a user touches anywhere on the screen. ` super.messagesAdapter.registerViewClickListener(R.id.messagesList, new MessagesListAdapter.OnMessageViewClickListener() { @Override public void onMessageViewClick(View view, Message message) { onTouch(); } });` This doesn't...
I want messages to start from the top. This is possible using `messagesList.setAdapter(messageListAdapter, true);` to set the reverse boolean parameter as true. However, this also reverses all the date headers...
Hi. It is possible to add scroll bar indicator to input?
Hi, first of all thanks for the great job, I think this lib is awesome! Question: I need to add message status in form of an ImageView to all outcoming...
I try to make the avatar in the **MessagesList** bigger (from 40dp to 60 or 80). To do so, I used these parameter in dimens.xml: ``` 60dp 60dp ``` and...