Skip to content

Instantly share code, notes, and snippets.

@arifix
Last active October 17, 2018 18:52
Show Gist options
  • Save arifix/0caf6f0c979e45d45e934283af1abe07 to your computer and use it in GitHub Desktop.
Save arifix/0caf6f0c979e45d45e934283af1abe07 to your computer and use it in GitHub Desktop.
Progress Bar with Gradient Background
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/progress">
<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="7.0"
android:useLevel="true">
<gradient
android:endColor="#87CEEB"
android:centerColor="#768087"
android:startColor="#000"
android:type="sweep" />
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment