Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

07. Typing Status

Himanshu Singh edited this page Oct 31, 2020 · 1 revision

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 "-"
}