Просмотр исходного кода

Fix title jumping around when refreshing (#5328)

Andreas 3 лет назад
Родитель
Сommit
de50f53be4

+ 2 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/manga/info/MangaInfoHeaderAdapter.kt

@@ -288,6 +288,8 @@ class MangaInfoHeaderAdapter(
                 if (initialLoad && (fromSource || isTablet)) {
                     toggleMangaInfo()
                     initialLoad = false
+                    // wrap_content and autoFixTextSize can cause unwanted behaviour this tries to solve it
+                    binding.mangaFullTitle.requestLayout()
                 }
 
                 // Refreshes will change the state and it needs to be set to correct state to display correctly

+ 4 - 5
app/src/main/res/layout/manga_info_header.xml

@@ -61,10 +61,9 @@
             android:id="@+id/manga_full_title"
             style="@style/TextAppearance.Medium.Title"
             android:layout_width="match_parent"
-            android:layout_height="wrap_content"
+            android:layout_height="60sp"
             android:layout_marginBottom="4dp"
             android:gravity="bottom"
-            android:maxLines="3"
             android:text="@string/manga_info_full_title_label"
             android:textIsSelectable="false"
             app:autoSizeMaxTextSize="20sp"
@@ -85,14 +84,14 @@
             style="@style/TextAppearance.Regular.Body1.Secondary"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
-            android:layout_marginBottom="4dp"
             android:textIsSelectable="false"
             tools:text="Artist" />
 
         <LinearLayout
             android:id="@+id/manga_status_row"
             android:layout_width="wrap_content"
-            android:layout_height="wrap_content">
+            android:layout_height="wrap_content"
+            android:layout_marginTop="4dp">
 
             <TextView
                 android:id="@+id/manga_status"
@@ -172,12 +171,12 @@
         android:id="@+id/manga_summary_section"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
+        android:layout_marginTop="8dp"
         app:layoutDescription="@xml/manga_summary_section_scene"
         app:layout_constraintEnd_toEndOf="parent"
         app:layout_constraintStart_toStartOf="parent"
         app:layout_constraintTop_toBottomOf="@+id/btn_favorite">
 
-
         <TextView
             android:id="@+id/manga_summary_text"
             style="@style/TextAppearance.Regular.Body1.Secondary"

+ 2 - 0
app/src/main/res/xml/manga_info_header_scene.xml

@@ -33,6 +33,7 @@
             android:id="@+id/manga_summary_section"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
+            android:layout_marginTop="8dp"
             motion:layout_constraintEnd_toEndOf="parent"
             motion:layout_constraintStart_toStartOf="parent"
             motion:layout_constraintTop_toBottomOf="@+id/btn_favorite"
@@ -126,6 +127,7 @@
             android:id="@+id/manga_summary_section"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
+            android:layout_marginTop="8dp"
             motion:layout_constraintEnd_toEndOf="parent"
             motion:layout_constraintStart_toStartOf="parent"
             motion:layout_constraintTop_toBottomOf="@+id/btn_favorite"