diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-30 16:53:09 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-30 16:53:09 -0600 |
commit | 1ed362fdcac42fd2c18d1b580c8e20196564ba47 (patch) | |
tree | be3891c2d1a6c7308e2a7f8b4c95251c4a230754 /app/src/main/res/layout/room_fragment.xml | |
parent | 72da66ee0a0c4458f779581245d9ee3d9500f4cb (diff) | |
download | wiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar wiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar.gz wiimmfi-watcher-1ed362fdcac42fd2c18d1b580c8e20196564ba47.tar.bz2 |
fixed about fragment license text error, added margins to watchcodesfragment
Diffstat (limited to 'app/src/main/res/layout/room_fragment.xml')
-rw-r--r-- | app/src/main/res/layout/room_fragment.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/src/main/res/layout/room_fragment.xml b/app/src/main/res/layout/room_fragment.xml index 81f8419..bf49aa1 100644 --- a/app/src/main/res/layout/room_fragment.xml +++ b/app/src/main/res/layout/room_fragment.xml @@ -1,10 +1,11 @@ <?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" - xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - android:foregroundTint="@color/white"> + android:foregroundTint="@color/white" + + > <TextView android:id="@+id/room_header_text" @@ -20,7 +21,8 @@ android:layout_width="match_parent" android:layout_height="0dp" app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintTop_toBottomOf="@+id/room_header_text" > + app:layout_constraintTop_toBottomOf="@+id/room_header_text" + android:fitsSystemWindows="true"> </androidx.recyclerview.widget.RecyclerView> |