From 09816ed5b6c8a730b02918ae38cf3c95dde41fca Mon Sep 17 00:00:00 2001 From: arkon <eugcheung94@gmail.com> Date: Wed, 20 May 2020 22:30:46 -0400 Subject: [PATCH] Refactor history_item.xml to use ConstraintLayout --- app/src/main/res/layout/history_item.xml | 94 ++++++++++++------------ 1 file changed, 48 insertions(+), 46 deletions(-) diff --git a/app/src/main/res/layout/history_item.xml b/app/src/main/res/layout/history_item.xml index cfbbfee137..441aa42b9d 100644 --- a/app/src/main/res/layout/history_item.xml +++ b/app/src/main/res/layout/history_item.xml @@ -1,10 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/holder" style="@style/Theme.Widget.CardView.Item" android:padding="0dp"> - <LinearLayout + <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="128dp" android:orientation="horizontal"> @@ -14,55 +15,56 @@ android:layout_width="85dp" android:layout_height="match_parent" android:contentDescription="@string/description_cover" - android:scaleType="centerCrop" /> + android:scaleType="centerCrop" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> - <RelativeLayout - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical"> + <TextView + android:id="@+id/manga_title" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginStart="16dp" + android:layout_marginTop="16dp" + android:layout_marginEnd="16dp" + android:ellipsize="end" + android:maxLines="2" + android:textAppearance="@style/TextAppearance.Medium" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toEndOf="@+id/cover" + app:layout_constraintTop_toTopOf="parent" /> - <RelativeLayout - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" - android:padding="16dp"> + <TextView + android:id="@+id/manga_subtitle" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_below="@id/manga_title" + android:layout_marginStart="16dp" + android:layout_marginTop="4dp" + android:layout_marginEnd="16dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toEndOf="@+id/cover" + app:layout_constraintTop_toBottomOf="@+id/manga_title" /> - <TextView - android:id="@+id/manga_title" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:ellipsize="end" - android:maxLines="2" - android:textAppearance="@style/TextAppearance.Medium" /> + <Button + android:id="@+id/remove" + style="@style/Theme.Widget.Button.Error" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/action_remove" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toEndOf="@+id/cover" /> - <TextView - android:id="@+id/manga_subtitle" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_below="@id/manga_title" - android:layout_marginTop="4dp" /> + <Button + android:id="@+id/resume" + style="@style/Theme.Widget.Button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_toEndOf="@id/remove" + android:text="@string/action_resume" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toEndOf="@+id/remove" /> - </RelativeLayout> - - <Button - android:id="@+id/remove" - style="@style/Theme.Widget.Button.Error" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentBottom="true" - android:text="@string/action_remove" /> - - <Button - android:id="@+id/resume" - style="@style/Theme.Widget.Button" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentBottom="true" - android:layout_toEndOf="@id/remove" - android:text="@string/action_resume" /> - - </RelativeLayout> - - </LinearLayout> + </androidx.constraintlayout.widget.ConstraintLayout> </androidx.cardview.widget.CardView>