Skip to content

RtkMoreToggleButton

Last updated View as MarkdownAgent setup

A button which toggles visibility of a more menu.

Methods

Method Parameters Description
activate meeting: RealtimeKitClient Bind the button to the meeting state

Usage Examples

Basic Usage

<com.cloudflare.realtimekit.ui.view.controlbarbuttons.RtkMoreToggleButton
    android:id="@+id/rtk_more_toggle"
    android:layout_width="50dp"
    android:layout_height="50dp" />

With Methods

val moreToggleButton = findViewById<RtkMoreToggleButton>(R.id.rtk_more_toggle)
moreToggleButton.activate(meeting)

Was this helpful?