来自xml android动态postion imageview的动画

时间:2016-10-17 04:14:51

标签: android xml animation

我想将动画从xml添加到imageview。在动画播放之前,我想要更改XY位置我的imageview(动态位置)。我使用方法setX()dan setY()移动我的imageview并将动画设置为我的imageview:

new AnimationUtils();
Animation animation = AnimationUtils.loadAnimation(this, R.anim.rotate);
img.setAnimation(animation);

问题是我的imageview没有用右旋转旋转。 Imageview仍然使用坐标0,0进行透视。在移动我的图像视图后,如何为新坐标设置枢轴(50%)?

我在自定义动画xml中使用pivot:

android:pivotX="50%"
android:pivotY="50%"

0 个答案:

没有答案