我已经尝试了很多方法,但是没有得到好运!让我解释一下我已经做了什么。
创建了ProgressBar
<ProgressBar
android:layout_centerInParent="true"
android:id="@+id/progressBar"
android:layout_width="400dp"
android:indeterminateDuration="10000"
android:layout_height="400dp"
android:indeterminate="false"
android:indeterminateDrawable="@drawable/rotate_bar"
android:background="@drawable/circle_shape"
tools:ignore="MissingConstraints" />```
为圆形添加自定义背景:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:shape="ring"
android:drawable="@drawable/rotate_bar"
android:innerRadiusRatio="2.5"
android:thickness="5dp"
android:useLevel="false">
<solid android:color="#CCC" />
</shape>
</item>
</layer-list>
通过以下方式设置旋转度:
<shape
android:innerRadiusRatio="2.5"
android:shape="ring"
android:thickness="5dp"
android:useLevel="@null"><!-- this line fixes the issue for lollipop api 21 -->
<gradient
android:angle="90"
android:endColor="#000"
android:startColor="#007DD6" />
</shape>
上述代码的结果:
要实现的目标: