我正在尝试在我的 android 应用程序中创建动画。
我想要动画像星球大战电影的学分一样,文字逐渐上升。如果有其他方法可以做到这一点,我想知道。
尝试这个 :
将这段代码放在 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);
这就是你粗略的做法。