Android xml アニメーションに苦労しています。画像を中心点を中心に反時計回りに回転させたい。
アニメーション用の私のxmlは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true" >
<rotate
android:duration="1000"
android:repeatCount="infinite"
android:repeatMode="restart"
android:fromDegrees="360"
android:toDegrees="0"
android:pivotX="0.5"
android:pivotY="0.5"
android:interpolator="@android:anim/linear_interpolator"
/>
いいえ、この現在のアニメーションは点 x=0 を中心に画像を回転させます。y=0 .