移动在沿曲线道路机器人的背景中的图象

时间:2013-04-26 13:15:26

标签: android animation android-animation

我正在开发应用程序,其中我希望图像在背景屏幕中沿着曲线路径移动。我能够使用下面的翻译xml将图像从一个点移动到另一个点,但是它沿着直线路径移动,我希望它沿着曲线路径移动。我能实现这个目标吗?

<?xml version="1.0" encoding="utf-8"?>
 <translate xmlns:android="http://schemas.android.com/apk/res/android"
   android:duration="3000"
   android:fromXDelta="-20%"
   android:fromYDelta="-10%"
   android:toXDelta="150%"
   android:toYDelta="-130%"
   android:zAdjustment="normal" />

请帮忙。谢谢!

1 个答案:

答案 0 :(得分:0)

<rotate
    android:toDegrees="360"
    android:pivotX="100%"
    android:pivotY="200%"
    android:duration="6000"
    android:repeatMode="restart"
    android:repeatCount="infinite"/>

解决方法:我使用了旋转并使用pivotX和pivotY以及图像位置

进行了播放