2021-04-30 13:40:14 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-30 16:53:09 -06:00
|
|
|
android:foregroundTint="@color/white"
|
|
|
|
|
|
|
|
>
|
2021-04-30 13:40:14 -06:00
|
|
|
|
2021-05-04 17:59:55 -06:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/room_header_text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="18dp"
|
|
|
|
android:text="TextView"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
|
2021-04-30 13:40:14 -06:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/player_data_recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
2021-05-04 17:59:55 -06:00
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2021-05-30 16:53:09 -06:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/room_header_text"
|
|
|
|
android:fitsSystemWindows="true">
|
2021-05-18 20:48:17 -06:00
|
|
|
|
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2021-04-30 13:40:14 -06:00
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2021-05-04 17:59:55 -06:00
|
|
|
android:id="@+id/refresh_button"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="20dp"
|
|
|
|
android:clickable="true"
|
2021-05-04 17:59:55 -06:00
|
|
|
android:enabled="true"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:foregroundTint="#FFFFFF"
|
|
|
|
app:backgroundTint="#1E88E5"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_baseline_refresh_24"
|
2021-05-04 17:59:55 -06:00
|
|
|
app:tint="@color/white" />
|
2021-05-18 20:48:17 -06:00
|
|
|
|
2021-04-30 13:40:14 -06:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|