|
@@ -176,17 +176,32 @@
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/manga_summary_label"
|
|
|
- style="@style/TextAppearance.Regular.SubHeading"
|
|
|
+ <RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="16dp"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- android:layout_marginEnd="16dp"
|
|
|
- android:layout_marginBottom="8dp"
|
|
|
- android:text="@string/manga_info_about_label"
|
|
|
- android:textIsSelectable="false" />
|
|
|
+ android:paddingStart="16dp"
|
|
|
+ android:paddingEnd="16dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/manga_summary_label"
|
|
|
+ style="@style/TextAppearance.Regular.SubHeading"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:text="@string/manga_info_about_label"
|
|
|
+ android:textIsSelectable="false" />
|
|
|
+
|
|
|
+ <com.google.android.material.button.MaterialButton
|
|
|
+ android:id="@+id/manga_info_toggle"
|
|
|
+ style="@style/Theme.Widget.Button.Icon"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:text="@string/manga_info_expand"
|
|
|
+ app:icon="@drawable/ic_baseline_expand_more_24dp"
|
|
|
+ app:iconTint="?attr/colorOnPrimary" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/manga_summary"
|
|
@@ -198,7 +213,7 @@
|
|
|
android:clickable="true"
|
|
|
android:ellipsize="end"
|
|
|
android:focusable="true"
|
|
|
- android:maxLines="3"
|
|
|
+ android:maxLines="2"
|
|
|
android:textIsSelectable="false"
|
|
|
tools:text="Summary" />
|
|
|
|
|
@@ -237,16 +252,6 @@
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/manga_info_toggle"
|
|
|
- style="@style/Theme.Widget.Button"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="16dp"
|
|
|
- android:layout_marginEnd="16dp"
|
|
|
- android:text="@string/manga_info_expand"
|
|
|
- android:textSize="12sp" />
|
|
|
-
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|