Created
May 20, 2013 15:26
-
-
Save jinqian/5612943 to your computer and use it in GitHub Desktop.
simple android progress bar drawable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > | |
<item android:id="@android:id/background"> | |
<shape> | |
<corners android:radius="5dip" /> | |
<gradient | |
android:angle="270" | |
android:centerColor="#ff5a5d5a" | |
android:centerY="0.75" | |
android:endColor="#ff747674" | |
android:startColor="#ff9d9e9d" /> | |
</shape> | |
</item> | |
<item android:id="@android:id/progress"> | |
<clip> | |
<shape> | |
<corners android:radius="5dip" /> | |
<gradient | |
android:angle="270" | |
android:endColor="#A1B24A" | |
android:startColor="#A1B24A" /> | |
</shape> | |
</clip> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment