Skip to content

RtkMeetingControlBarView

A pre-built control bar for group call meetings. Contains mic toggle, camera toggle, more toggle, and leave button.

Methods

MethodParametersDescription
activatemeeting: RealtimeKitClientBind the control bar to the meeting state

Usage Examples

Basic Usage

<com.cloudflare.realtimekit.ui.view.controlbars.RtkMeetingControlBarView
android:id="@+id/rtk_meeting_control_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

With Methods

Kotlin
val controlBar = findViewById<RtkMeetingControlBarView>(R.id.rtk_meeting_control_bar)
controlBar.activate(meeting)