Created
July 17, 2013 01:36
-
-
Save z8888q/6016949 to your computer and use it in GitHub Desktop.
android自定义圆形Progressbar
This file contains hidden or 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"?> | |
<rotate xmlns:android="http://schemas.android.com/apk/res/android" | |
android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0" | |
android:toDegrees="360"> | |
<shape android:shape="ring" android:innerRadiusRatio="3" | |
android:thicknessRatio="8" android:useLevel="false"> | |
<size android:width="48dip" android:height="48dip" /> | |
<gradient android:type="sweep" android:useLevel="false" | |
android:startColor="#4c737373" android:centerColor="#4c737373" | |
android:centerY="0.50" android:endColor="#ffffd300" /> | |
</shape> | |
</rotate> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment