Use a grey shade under progress spinner in wifi settings

Change-Id: I1c3fa3a05fe66924989607d73e77ca2616a898e6
Fix: 62545533
Test: visual
This commit is contained in:
Fan Zhang
2017-07-10 14:46:29 -07:00
parent 250595ae11
commit 62a3220efb
2 changed files with 20 additions and 8 deletions

View File

@@ -15,8 +15,20 @@
limitations under the License.
-->
<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/TrimmedHorizontalProgressBar"
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true" />
android:layout_height="3dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<View
android:id="@+id/progress_bar_background"
style="@style/TrimmedHorizontalProgressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/colorSecondary" />
<ProgressBar
android:id="@+id/progress_bar_animation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/TrimmedHorizontalProgressBar"
android:indeterminate="true" />
</FrameLayout>