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

来源:互联网 发布:阿里云测试 编辑:程序博客网 时间:2024/05/16 01:02
<?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>
<ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        style="?android:attr/progressBarStyleSmall"        android:indeterminateDrawable="@drawable/progress_small"/>

设置成progressBarStyleSmall后,图标变小。 

设置成progressBarStyleLarge后,图标变大

   


0 0
原创粉丝点击