Skip to content

非公式本サイトは非公式の日本語ドキュメントであり、Cloudflare 公式サイトではありません。最新情報はdevelopers.cloudflare.comをご確認ください。

RtkRecordingIndicator

最終更新 Markdown で表示Agent セットアップ

ミーティングの録画状態を示すコンポーネントです。録画中でない場合は何も描画しません。

メソッド

メソッド パラメーター 説明
activate meeting: RealtimeKitClient インジケーターをミーティングの状態に紐づけます
applyDesignTokens designTokens: RtkDesignTokens テーマ用にカスタムデザイントークンを適用します

使用例

基本的な使い方

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

メソッドを使う

val recordingIndicator = findViewById<RtkRecordingIndicator>(R.id.rtk_recording_indicator)
recordingIndicator.activate(meeting)

役に立ちましたか?