我有一个圆形物体,里面有更多的小物体应该随着圆圈转动。 目前圆圈旋转,但我不能用大圆旋转物体。
如果有人可以提供帮助,我会很高兴
谢谢
旋转圆圈
<?xml version="1.0" encoding="utf-8"?>
<set android:interpolator="@android:anim/linear_interpolator"
xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:toDegrees="360"
android:startOffset="0"
android:repeatMode="restart"
android:repeatCount="800"
android:pivotY="50%"
android:pivotX="50%"
android:fromDegrees="0"
android:duration="3500"/>
</set>
旋转圆圈内的物体
<?xml version="1.0" encoding="utf-8"?>
<set android:interpolator="@android:anim/linear_interpolator"
xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:toDegrees="360"
android:startOffset="0"
android:repeatMode="restart"
android:repeatCount="800"
android:pivotY="50%"
android:pivotX="50%"
android:fromDegrees="0"
android:duration="3500"
/>
</set>
并在代码中:
Animation animRotate = AnimationUtils.loadAnimation(this, R.anim.rotate);
ImageView mimage =(ImageView)this.findViewById(R.id.image);
animRotate= AnimationUtils.loadAnimation(this, R.anim.rotateobject);
mimage.startAnimation(animRotate);
答案 0 :(得分:0)
替换
android:pivotY="0%"
android:pivotX="100%"
通过
android:pivotY="50%p"
android:pivotX="50%p"
在你的孩子动画中。它将相对于视图的父级设置枢轴。