07. Typing Status - gappein/gappein-chat-sdk GitHub Wiki

Case 01

If you want that participant gets to see your typing status, you also need to set your typing status in the TextWatcher of you EditText like,

ChatClient.getInstance().setTypingStatus("channelId","your_user_token",is_user_typing = true/false){
//Handle Success
}

Case 02:

If you want to get the status of the participating user in the channel use,

ChatClient.getInstance().getTypingStatus("channelId","participant_user_token"){
//Handle the typing status
//if user is not typing it will return "-"
}