aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/home_page.xml
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-03-02 09:13:54 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2021-03-02 09:13:54 +0100
commitf9f079eea806454d49d6088089511d72e1c28f86 (patch)
treeb0eaf1019c094b9857c94a2e245682ebc976f0b0 /app/src/main/res/layout/home_page.xml
parent9e1f3503c1a80d7e108f60f9065ae08abb7c2b3f (diff)
Cleaning up the code.
Diffstat (limited to 'app/src/main/res/layout/home_page.xml')
-rw-r--r--app/src/main/res/layout/home_page.xml16
1 files changed, 6 insertions, 10 deletions
diff --git a/app/src/main/res/layout/home_page.xml b/app/src/main/res/layout/home_page.xml
index 564d7da..6456dfc 100644
--- a/app/src/main/res/layout/home_page.xml
+++ b/app/src/main/res/layout/home_page.xml
@@ -4,9 +4,8 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".HomePage"
android:background="@color/very_dark_purple"
- >
+ tools:context=".HomePage">
<TextView
android:id="@+id/tv_title"
@@ -19,29 +18,26 @@
android:textColor="@color/strong_pink"
android:textSize="40sp"
app:layout_constraintBottom_toBottomOf="@id/button_top_manga"
- app:layout_constraintTop_toTopOf="parent"
- />
+ app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_top_manga"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/top_manga"
- app:layout_constraintTop_toBottomOf="@id/tv_title"
app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@id/button_top_anime"
- />
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/tv_title" />
<Button
android:id="@+id/button_top_anime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/top_anime"
- app:layout_constraintTop_toBottomOf="@id/tv_title"
app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toEndOf="@id/button_top_manga"
app:layout_constraintEnd_toEndOf="parent"
- />
+ app:layout_constraintStart_toEndOf="@id/button_top_manga"
+ app:layout_constraintTop_toBottomOf="@id/tv_title" />
</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file