Remove LinearColorBar and replace uses with ProgressBar.
We never actually needed it, since progress bar can do everything we want it to. Renamed data_usage_progress to color_bar_progress to reflect its more generic state. Updated color_bar_progress to use proper values. Since we can't seem to use private attrs in settings, use the dimen/color values that are customizable. Updated usages to use regular ProgressBar APIs. Fixes: 74111937 Test: visual inspection and robotests Change-Id: I4f0c59e6cf5c629e3cc3901800d9c4afc95fa495
This commit is contained in:
@@ -68,8 +68,8 @@
|
||||
android:id="@+id/determinateBar"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="10dp"
|
||||
android:progressDrawable="@drawable/data_usage_progress"/>
|
||||
android:layout_height="wrap_content"
|
||||
android:progressDrawable="@drawable/color_bar_progress"/>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/label_bar"
|
||||
|
@@ -36,11 +36,12 @@
|
||||
android:gravity="left|center_vertical"
|
||||
android:text="@string/running_processes_header_title" />
|
||||
|
||||
<view class="com.android.settings.widget.LinearColorBar"
|
||||
<ProgressBar
|
||||
android:id="@+id/color_bar"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="16sp"
|
||||
android:orientation="horizontal" />
|
||||
android:layout_height="wrap_content"
|
||||
android:progressDrawable="@drawable/color_bar_progress"/>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
|
@@ -42,11 +42,12 @@
|
||||
android:paddingBottom="5dp"
|
||||
android:maxLines="10" />
|
||||
|
||||
<com.android.settings.widget.LinearColorBar
|
||||
<ProgressBar
|
||||
android:id="@+id/color_bar"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="28dp"
|
||||
/>
|
||||
android:layout_height="wrap_content"
|
||||
android:progressDrawable="@drawable/color_bar_progress"/>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/label_bar"
|
||||
|
Reference in New Issue
Block a user