Accessibility with the Service Chat SDK for Android
The Service Chat SDK is accessible to customers that use a screen reader.
Depending on your needs, you can also change some settings to expand accessibility.
Disable the Minimized View in Chat
By default, a chat session starts out as a minimized, thumbnail view that you tap to open. This minimized view is not optimal for accessibility because a visually impaired person could have trouble locating the thumbnail. To improve accessibility, we suggest starting the session in the full-screen view. When building the ChatUIConfiguration object, set defaultToMinimized to false.
1ChatUIConfiguration uiConfig = new ChatUIConfiguration.Builder()
2 .chatConfiguration(chatConfiguration)
3 .defaultToMinimized(false)
4 .build();Contrast Ratio Considerations
By default, we brand the SDK using a 4.2 contrast ratio. You can customize the colors to increase this contrast ratio.