NowVoiceUiConfiguration class - Android

  • Release version: Zurich
  • Updated July 21, 2026
  • 1 minute to read
  • Specifies presentation options for the voice agent UI.

    NowVoiceUiConfiguration - NowVoiceUiConfiguration(hidePostCallTranscript: Boolean = false, shouldBlockAttachmentSharing: Boolean = false)

    Creates a NowVoiceUiConfiguration instance with the specified presentation options.

    Table 1. Parameters
    Name Type Description
    hidePostCallTranscript Boolean Optional. Flag that indicates whether the post-call transcript summary screen is displayed or hidden when the session ends.
    Valid values:
    • true: The post-call transcript summary screen is hidden.
    • false: The post-call transcript summary screen is displayed.

    Default: False

    shouldBlockAttachmentSharing Boolean Optional. Flag that indicates whether the share button is displayed or hidden on the transcript screen.
    Valid values:
    • true: The share button is hidden.
    • false: The share button is displayed.

    Default: False

    The following code example shows how to create an instance of NowVoiceUiConfiguration.

    val uiConfiguration = NowVoiceUiConfiguration(
        hidePostCallTranscript = true,
        shouldBlockAttachmentSharing = true
    )