Merge "Use a grey shade under progress spinner in wifi settings"

This commit is contained in:
TreeHugger Robot
2017-07-11 17:24:43 +00:00
committed by Android (Google) Code Review
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>