有人能告诉我如何在android中创建动画效果。我希望TextView
说出姓名,年龄,性别从左边移动到屏幕上的特定位置。例如:如果TextView
从屏幕左端移动。这些字段垂直排列在线性布局上。
答案 0 :(得分:0)
在res / anim /中创建一个新的xml,命名为ltor.xml,内容为
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate android:fromXDelta="-100%" android:toXDelta="0%"
android:fromYDelta="0%" android:toYDelta="0%"
android:duration="700"/>
</set>
在要制作动画的视图中提供以下属性。
android:animation="@anim/ltor"