- Home
- /Realtime
- /…
- /Android
- /RtkJoinButton
RtkJoinButton
Last updated Apr 21, 2026|Copy as Markdown|View as Markdown|Agent setup OverviewMethodsUsage ExamplesBasic UsageWith Methods
A button that performs the room join operation. Displays "Join" by default and changes to "Joining..." during the join process. Automatically disables after a successful join.
<com.cloudflare.realtimekit.ui.view.RtkJoinButton
android:id="@+id/rtk_join_button"
android:layout_width="wrap_content"
android:layout_height="48dp"
app:rtk_btn_variant="primary" />
val joinButton = findViewById<RtkJoinButton>(R.id.rtk_join_button)
val nameField = findViewById<EditText>(R.id.name_field)
joinButton.activate(meeting, nameField)
PreviousRtkHeaderViewNextRtkJoinLivestreamButton