Android chat feature implementation

I want to use the chat feature in my android app. In this function, one user should be able to communicate with more than one person at a time, and he can send emoticons to another person.

I would like to know how I can implement this function if you have done this, or you know that it is best to share it with me.

+4
source share
1 answer

ListView has a feature that helps make this task less painful. It is called a transcription mode:

android:transcriptMode 

Here is a video presentation.

The sdk females have a BluetoothChat app that you can use as a link.

+6
source

Source: https://habr.com/ru/post/1379098/


All Articles