我使用android:layout_centerHorizontal="true"
和android:layout_centerVertical="true"
在RelativeLayout内置了一个ImageView。
我可以使用XML和/或代码动画(移动)它,让我们说右下角吗?我想指定动画的持续时间以及可能的曲线。
在:
<ImageView android:id="@+id/imageview01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:src="@drawable/imagefile" />
后:
<ImageView android:id="@+id/imageview01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:src="@drawable/imagefile" />
答案 0 :(得分:1)
答案 1 :(得分:1)
在Mosh上捎带,这看起来是一个有用的早期答案:
Full example of how to programmatically do RotateAnimations?