如何在Android应用程序中旋转自己的轴上的圆形图像按钮?

时间:2011-09-27 21:28:42

标签: android animation rotation imagebutton

我有以下动画代码:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate

android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="100"
android:duration="1000" />

</set>

// imageButton布局代码

<ImageButton
android:id="@+id/anime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/start"
android:layout_centerHorizontal="true"
android:paddingLeft="10dip"
android:paddingTop="150dip"
android:paddingBottom="10dip"
android:paddingRight="10dip"
android:background="@null"
>
</ImageButton>

但是,我的圆形图像按钮不会在其自己的轴上旋转。相反,它遵循循环路径。有人可以帮我解决这个动画吗?

感谢。

2 个答案:

答案 0 :(得分:2)

动画中的枢轴计算考虑了ImageView的填充。由于填充是不规则的(顶部填充与其余边不同),动画的旋转不会与图像的实际中心对齐。

答案 1 :(得分:0)

imagebutton的填充应该是统一的。