Skip to content

Instantly share code, notes, and snippets.

@markdrake
Last active July 29, 2016 18:42
Show Gist options
  • Save markdrake/6e9706464faee92c5031d88d4bbc429f to your computer and use it in GitHub Desktop.
Save markdrake/6e9706464faee92c5031d88d4bbc429f to your computer and use it in GitHub Desktop.
Android progress bars XML for material design
<!-- Circular bar -->
<ProgressBar
style="@style/Base.Widget.AppCompat.ProgressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:indeterminateTint="@color/colorAccent"
android:indeterminateTintMode="src_atop"
android:visibility="visible" />
<!-- Linear bar -->
<ProgressBar
style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="8dp"
android:layout_marginTop="24dp"
android:indeterminate="true"
android:visibility="visible" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment