diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-04 23:31:34 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-04 23:31:34 -0600 |
commit | b202760cdc2b443fd07dcee593ed7f3e09d6b77b (patch) | |
tree | 959051ae90e51212590db5b513e4de93261136cf /app/src/main/res/layout | |
parent | 50dfc57c61a01dc20a42129246b458bf90e26154 (diff) | |
download | wiimmfi-watcher-b202760cdc2b443fd07dcee593ed7f3e09d6b77b.tar wiimmfi-watcher-b202760cdc2b443fd07dcee593ed7f3e09d6b77b.tar.gz wiimmfi-watcher-b202760cdc2b443fd07dcee593ed7f3e09d6b77b.tar.bz2 |
watched friend codes work
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/friend_code_input_fragment.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/recent_friend_codes_item.xml | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/app/src/main/res/layout/friend_code_input_fragment.xml b/app/src/main/res/layout/friend_code_input_fragment.xml index a70e6df..4421a65 100644 --- a/app/src/main/res/layout/friend_code_input_fragment.xml +++ b/app/src/main/res/layout/friend_code_input_fragment.xml @@ -56,7 +56,7 @@ <androidx.recyclerview.widget.RecyclerView android:id="@+id/recent_friend_codes_recycler_view" android:layout_width="match_parent" - android:layout_height="0dp" + android:layout_height="match_parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView3" tools:layout_editor_absoluteX="15dp" /> diff --git a/app/src/main/res/layout/recent_friend_codes_item.xml b/app/src/main/res/layout/recent_friend_codes_item.xml index 7609cdc..7a4f42a 100644 --- a/app/src/main/res/layout/recent_friend_codes_item.xml +++ b/app/src/main/res/layout/recent_friend_codes_item.xml @@ -1,16 +1,18 @@ <?xml version="1.0" encoding="utf-8"?> -<androidx.constraintlayout.widget.ConstraintLayout - xmlns:android="http://schemas.android.com/apk/res/android" +<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:layout_height="wrap_content"> <Button android:id="@+id/recent_friend_code_button" android:layout_width="0dp" android:layout_height="wrap_content" + android:backgroundTint="#949494" android:text="Button" - app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" /> + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |