Blame view
app/src/main/res/drawable/progress_circular.xml
647 Bytes
|
7f095a929
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="1"
android:toDegrees="360" >
<shape
android:innerRadiusRatio="2.5"
android:shape="ring"
android:thicknessRatio="18"
android:useLevel="false" >
<gradient
android:centerColor="#a0a0a0a0"
android:centerY="0.5"
android:endColor="#f0f0f0"
android:startColor="#40404040"
android:type="sweep"/>
</shape>
</rotate>
|