Skip to content

RtkParticipantVideoIndicator

Last updated View as MarkdownAgent setup

A video indicator that shows a participant's camera status.

Methods

Method Parameters Description
activate participant: RtkMeetingParticipant Bind the indicator to a participant

Usage Examples

Basic Usage

<com.cloudflare.realtimekit.ui.view.RtkParticipantVideoIndicator
    android:id="@+id/video_indicator"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

With Methods

val videoIndicator = findViewById<RtkParticipantVideoIndicator>(R.id.video_indicator)
videoIndicator.activate(participant)

Was this helpful?