Skip to content

RtkMeetingTitleView

A text view that displays the meeting title. It automatically updates when the meeting title changes.

Methods

MethodParametersDescription
activatemeeting: RealtimeKitClientBind the view to the meeting state
applyDesignTokensdesignTokens: RtkDesignTokensApply custom design tokens for theming

Usage Examples

Basic Usage

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

With Methods

Kotlin
val titleView = findViewById<RtkMeetingTitleView>(R.id.rtk_meeting_title)
titleView.activate(meeting)