浏览代码

Tweak reader seekbar height for Android 5 UI bug (closes #2487)

arkon 5 年之前
父节点
当前提交
81418a7712
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      app/src/main/res/layout/reader_activity.xml

+ 7 - 1
app/src/main/res/layout/reader_activity.xml

@@ -77,10 +77,16 @@
                 android:textSize="15sp"
                 tools:text="1" />
 
+            <!--
+                Wonky way of setting height due to issues with horizontally centering the thumb in Android 5.
+                See https://stackoverflow.com/questions/15701767/android-thumb-is-not-centered-in-seekbar
+            -->
             <eu.kanade.tachiyomi.ui.reader.ReaderSeekBar
                 android:id="@+id/page_seekbar"
                 android:layout_width="0dp"
-                android:layout_height="match_parent"
+                android:layout_height="wrap_content"
+                android:maxHeight="?attr/actionBarSize"
+                android:minHeight="?attr/actionBarSize"
                 android:layout_weight="1" />
 
             <TextView