diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 18:01:47 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 18:01:47 -0600 |
commit | 2c540ef7ce473fbd681c42959a51224be4784eb7 (patch) | |
tree | 634a6cd2e8993496445a611f484c1e2da07bcc23 /app/src/main/res/layout/about_fragment.xml | |
parent | fc908199f136acd2a5030e5085f024857cd2cfb5 (diff) | |
download | wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar.gz wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar.bz2 |
added about fragment
Diffstat (limited to 'app/src/main/res/layout/about_fragment.xml')
-rw-r--r-- | app/src/main/res/layout/about_fragment.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app/src/main/res/layout/about_fragment.xml b/app/src/main/res/layout/about_fragment.xml new file mode 100644 index 0000000..0aeaf42 --- /dev/null +++ b/app/src/main/res/layout/about_fragment.xml @@ -0,0 +1,38 @@ +<?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"> + + <TextView + android:id="@+id/textView" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="About Wiimmfi Watcher" + android:textSize="30sp" + android:textStyle="bold" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/about_me_text" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="TextView" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/textView" /> + + <TextView + android:id="@+id/textView5" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="About Me" + android:textSize="30sp" + android:textStyle="bold" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/about_me_text" /> +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |