我正在尝试ProgressBar
通过在 Android 4.1 中使用旋转可绘制来获得自定义不确定。我这样做如下:
<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="360"
android:toDegrees="0"
android:drawable="@drawable/image_for_rotation"
android:pivotX="50%"
android:pivotY="50%" />
似乎参数不起作用,图像只能顺时针旋转,但我需要逆时针旋转fromDegrees
。toDegrees
当我更改animated-rotate
为 时rotate
,他们开始工作,但这不是我需要的。有什么建议让它工作吗?