diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-12 11:00:47 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-12 11:00:47 +0100 |
commit | 3decfd9d0d043c710f48cc145027a7b6bd45df8f (patch) | |
tree | 1c9a83333062654fc2477fca074a6e84b664a9fd /app/src/main/res/layout/fragment_second.xml | |
parent | b96bca561c321fb259895d470b2d01d9c0f34ea9 (diff) |
Renaming and adding some functions for the home buttons.
Diffstat (limited to 'app/src/main/res/layout/fragment_second.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_second.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/layout/fragment_second.xml b/app/src/main/res/layout/fragment_second.xml index bd90524..daabf01 100644 --- a/app/src/main/res/layout/fragment_second.xml +++ b/app/src/main/res/layout/fragment_second.xml @@ -4,22 +4,24 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - tools:context=".SecondFragment"> + tools:context=".SecondFragment" + android:background="@color/very_dark_purple" + > <TextView android:id="@+id/textview_second" android:layout_width="wrap_content" android:layout_height="wrap_content" - app:layout_constraintBottom_toTopOf="@id/button_second" + app:layout_constraintBottom_toTopOf="@id/home" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button - android:id="@+id/button_second" + android:id="@+id/home" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="@string/previous" + android:text="@string/home" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" |