diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-04 17:59:55 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-04 17:59:55 -0600 |
commit | 99643e5be84af7e8da217ed48597ceb3c9d3bc85 (patch) | |
tree | 91c314dc3a0f4b60d731ccb8854869302eb9bd8d /app/src/main/res/layout/fragment_room.xml | |
parent | af7a395b8c707fe5be3c03e9de878fae1d16b997 (diff) | |
download | wiimmfi-watcher-99643e5be84af7e8da217ed48597ceb3c9d3bc85.tar wiimmfi-watcher-99643e5be84af7e8da217ed48597ceb3c9d3bc85.tar.gz wiimmfi-watcher-99643e5be84af7e8da217ed48597ceb3c9d3bc85.tar.bz2 |
before i get too deep in the database stuff
Diffstat (limited to 'app/src/main/res/layout/fragment_room.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_room.xml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/app/src/main/res/layout/fragment_room.xml b/app/src/main/res/layout/fragment_room.xml index 42d0d60..467348b 100644 --- a/app/src/main/res/layout/fragment_room.xml +++ b/app/src/main/res/layout/fragment_room.xml @@ -5,21 +5,33 @@ android:layout_height="match_parent" android:foregroundTint="@color/white"> + <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" /> + <androidx.recyclerview.widget.RecyclerView android:id="@+id/player_data_recycler_view" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="0dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintTop_toBottomOf="@+id/room_header_text" /> <com.google.android.material.floatingactionbutton.FloatingActionButton - android:id="@+id/floatingActionButton" + android:id="@+id/refresh_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="20dp" android:clickable="true" + android:enabled="true" android:foregroundTint="#FFFFFF" app:backgroundTint="#1E88E5" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:srcCompat="@drawable/ic_baseline_refresh_24" - app:tint="@color/white"/> + app:tint="@color/white" /> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |