您的位置:首页 > 移动开发 > Android开发

android 圆形进度条(旋转的等待动画)

2017-01-23 10:39 295 查看
<?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:toDegrees="360">
<shape android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="8"
android:useLevel="false">
<gradient android:centerColor="@color/color_orange"
android:centerY="0.5"
android:endColor="@color/white"
android:useLevel="false"/>
</shape>

</rotate>
<ProgressBarandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_centerInParent="true"style="?android:attr/progressBarStyleSmall"android:indeterminateDrawable="@drawable/progress_small"/>
设置成progressBarStyleSmall后,图标变小。 设置成progressBarStyleLarge后,图标变大   
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  动画 android开发