Typing indicator
Typing indicator is a feature that allows users to know visually if another user in the channel is typing a message. The indicator UI appears in the Header region of the ChannelFragment
class and remains visible until the user sends the message or deletes the text completely. If the user stops typing for more than 10 seconds, the indicator will also disappear.
In order to use the typing indicator feature, you must first create a channel and enable the chat service. Once chat is enabled, the typing indicator feature is turned on by default through the setUseTypingIndicator()
setter method of the ChannelFragment.Builder
class. To learn how to allow users to chat in a channel, refer to Chat in a channel.
Customize the UI for typing indicator
The UI for typing indicator can be customized through StringSet
. The StringSet
is a set of strings used to compose the screen. It’s a res/strings.xml
file containing UIKit-defined string values.
Text strings for typing status can vary depending on the number of members typing in a channel:
- If one member is typing: “Member is typing...”
- If two members are simultaneously typing: “Member A and Member B are typing...”
- If more than two members are simultaneously typing: “Several people are typing...”