我正在尝试在我的Android应用中创建动画。
我希望动画像电影中的星球大战的演职员表,文字逐渐上升。如果有另一种方法可以做到这一点,我想知道。
答案 0 :(得分:11)
试试这个:
将这段代码放在res / anim / animationfile.xml
中的xml文件中<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator" >
<translate
android:duration="5000" ---> set your time here
android:fromYDelta="-100%p"
android:toYDelta="100%p" /> </set>
现在要设置动画,请执行以下操作:
Animation translatebu= AnimationUtils.loadAnimation(this, R.anim.animationfile);
tv.setText("Some text view.");
tv.startAnimation(translatebu);
这就是你大致的做法。
答案 1 :(得分:2)