我想显示带有自定义图像的进度条,我的进度条应该是该图像。该图像必须旋转。
到目前为止,我已经尝试了
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/loading_1" android:duration="200" />
<item android:drawable="@drawable/loading_2" android:duration="200" />
<item android:drawable="@drawable/loading__3" android:duration="200" />
<item android:drawable="@drawable/loading_4" android:duration="200" />
<item android:drawable="@drawable/loading_5" android:duration="200" />
<item android:drawable="@drawable/loading_6" android:duration="200" />
<item android:drawable="@drawable/loading_7" android:duration="200" />
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/loading_1"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="330"
android:toDegrees="360"
android:repeatCount="1" />
</animation-list>
我在进度条中调用了上面的类并将其设置为背景图像,但是它的加载但是没有正确的格式可以帮助我吗?