我想通過在Android 4.1中使用旋轉繪圖來獲得自定義的不確定ProgressBar
。我這樣做如下:android動畫旋轉不會旋轉ccw
<?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
時,他們開始工作,但這不是我所需要的。任何建議讓它工作?
試圖fromDegrees = 「0」 toDegrees =「 - 360」? 未測試不知道是否作品 – Sipka
是的。沒有效果,圖像仍然旋轉cw – Droidman