Эх сурвалжийг харах

Replace ProgressBars with Material component

arkon 4 жил өмнө
parent
commit
a8e536478c

+ 1 - 2
app/src/main/res/layout/download_item.xml

@@ -47,9 +47,8 @@
         app:layout_constraintTop_toBottomOf="@+id/manga_full_title"
         tools:text="Chapter Title" />
 
-    <ProgressBar
+    <com.google.android.material.progressindicator.LinearProgressIndicator
         android:id="@+id/download_progress"
-        style="?android:attr/progressBarStyleHorizontal"
         android:layout_width="0dp"
         android:layout_height="wrap_content"
         android:layout_marginBottom="8dp"

+ 1 - 2
app/src/main/res/layout/global_search_controller.xml

@@ -13,9 +13,8 @@
         android:paddingBottom="4dp"
         tools:listitem="@layout/global_search_controller_card" />
 
-    <ProgressBar
+    <com.google.android.material.progressindicator.LinearProgressIndicator
         android:id="@+id/progress_bar"
-        style="?android:attr/progressBarStyleHorizontal"
         android:layout_width="match_parent"
         android:layout_height="2dp"
         android:max="100"

+ 2 - 5
app/src/main/res/layout/webview_activity.xml

@@ -30,13 +30,10 @@
             android:layout_width="match_parent"
             android:layout_height="match_parent">
 
-            <ProgressBar
+            <com.google.android.material.progressindicator.LinearProgressIndicator
                 android:id="@+id/progress_bar"
-                style="?android:attr/progressBarStyleHorizontal"
                 android:layout_width="match_parent"
-                android:layout_height="2dp"
-                android:progressBackgroundTint="@color/colorPrimary"
-                android:progressTint="@color/colorPrimary" />
+                android:layout_height="wrap_content" />
 
         </WebView>
 

+ 5 - 0
app/src/main/res/values/styles.xml

@@ -225,6 +225,11 @@
     </style>
 
 
+    <style name="Theme.Widget.LinearProgressIndicator" parent="Widget.MaterialComponents.LinearProgressIndicator">
+        <item name="indicatorColor">?attr/colorAccent</item>
+    </style>
+
+
     <!--=======================-->
     <!--Widgets.TextInputLayout-->
     <!--=======================-->

+ 2 - 0
app/src/main/res/values/themes.xml

@@ -67,6 +67,7 @@
         <item name="textInputStyle">@style/Theme.Widget.TextInputLayout.OutlinedBox</item>
         <item name="android:itemTextAppearance">@style/TextAppearance.Widget.Menu</item>
         <item name="swipeRefreshLayoutProgressSpinnerBackgroundColor">?attr/colorAccent</item>
+        <item name="linearProgressIndicatorStyle">@style/Theme.Widget.LinearProgressIndicator</item>
 
         <!-- Material Dialogs -->
         <item name="md_background_color">?attr/colorSurface</item>
@@ -159,6 +160,7 @@
         <item name="textInputStyle">@style/Theme.Widget.TextInputLayout.OutlinedBox</item>
         <item name="android:itemTextAppearance">@style/TextAppearance.Widget.Menu</item>
         <item name="swipeRefreshLayoutProgressSpinnerBackgroundColor">?attr/colorAccent</item>
+        <item name="linearProgressIndicatorStyle">@style/Theme.Widget.LinearProgressIndicator</item>
 
         <!-- Material Dialogs -->
         <item name="md_background_color">?attr/colorSurface</item>