带有translationX translationY的RotateAnimation更改为axml

时间:2017-08-29 13:23:41

标签: animation xamarin rotation imageview

我想旋转图片。

new RotateAnimation(0, 360, Dimension.RelativeToSelf, 0.5f, Dimension.RelativeToSelf, 0.5f)
                {
                    Duration = 1000,
                    FillAfter = false,
                    RepeatCount = 1,
                    RepeatMode = RepeatMode.Restart
                };

当我的axml

中没有设置tranlationX和Y时,它很有效
<ImageView
            android:id="@+id/Icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:translationX="15dp"
            android:translationY="-30dp" />

我想念什么?

0 个答案:

没有答案