Skip to main content

RtkControlBarButton

A skeleton component used for composing buttons.

<com.cloudflare.realtimekit.ui.view.controlbars.RtkMeetingControlBarView
android:id="@+id/rtk_control_bar_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:rtk_cbb_showText="true"
app:rtk_cbb_iconSize="12sp"
app:rtk_cbb_iconPadding="4dp"
app:rtk_cbb_variant="button|horizontal"
/>

To setup the controlbar button inside kotlin/Java code do as follows

val buttonView = findViewById(R.id.rtk_control_bar_button)
buttonView.setOnClickListener(
{
// TODO: your action here
}
)