diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-18 20:48:17 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-18 20:48:17 -0600 |
commit | 11aa7c75e16d6819d0681f408c720cbc6a6754ba (patch) | |
tree | 0b9ca87486a52bcdaf3a964406132c12146e3b4f /app/src/main/res/layout/about_fragment.xml | |
parent | 39e2d4248878b4b8e501c271d8df5f05f0179b97 (diff) | |
download | wiimmfi-watcher-11aa7c75e16d6819d0681f408c720cbc6a6754ba.tar wiimmfi-watcher-11aa7c75e16d6819d0681f408c720cbc6a6754ba.tar.gz wiimmfi-watcher-11aa7c75e16d6819d0681f408c720cbc6a6754ba.tar.bz2 |
did a ton of stuff i dont remember like a dark mode and small enhancements
Diffstat (limited to 'app/src/main/res/layout/about_fragment.xml')
-rw-r--r-- | app/src/main/res/layout/about_fragment.xml | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/app/src/main/res/layout/about_fragment.xml b/app/src/main/res/layout/about_fragment.xml index 7fb085a..90a63ca 100644 --- a/app/src/main/res/layout/about_fragment.xml +++ b/app/src/main/res/layout/about_fragment.xml @@ -2,8 +2,10 @@ <ScrollView 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:id="@+id/about_view" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:background="#FFFFFF"> <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" @@ -47,8 +49,8 @@ android:id="@+id/about_me_text" android:layout_width="0dp" android:layout_height="wrap_content" - android:text="TextView" android:paddingBottom="15dp" + android:text="TextView" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView5" /> @@ -68,8 +70,8 @@ android:id="@+id/github_text" android:layout_width="0dp" android:layout_height="wrap_content" - android:text="TextView" android:paddingBottom="15dp" + android:text="TextView" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView7" /> @@ -90,8 +92,8 @@ android:id="@+id/contact_text" android:layout_width="0dp" android:layout_height="wrap_content" - android:text="TextView" android:paddingBottom="15dp" + android:text="TextView" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView9" /> @@ -100,13 +102,23 @@ android:id="@+id/bugs_text" android:layout_width="0dp" android:layout_height="wrap_content" - android:paddingBottom="65dp" + android:paddingBottom="15dp" android:text="TextView" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView13" /> <TextView + android:id="@+id/license_text" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:paddingBottom="65dp" + android:text="TextView" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/textView4" /> + + <TextView android:id="@+id/textView13" android:layout_width="0dp" android:layout_height="wrap_content" @@ -117,5 +129,17 @@ app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/contact_text" /> + + <TextView + android:id="@+id/textView4" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="License and Copyright" + android:textSize="24sp" + android:textStyle="bold" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.0" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/bugs_text" /> </androidx.constraintlayout.widget.ConstraintLayout> - </ScrollView>
\ No newline at end of file +</ScrollView>
\ No newline at end of file |