6

我正在尝试在我的 android 应用程序中创建动画。

我想要动画像星球大战电影的学分一样,文字逐渐上升。如果有其他方法可以做到这一点,我想知道。

4

2 回答 2

12

尝试这个 :

将这段代码放在 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);

这就是你粗略的做法。

于 2013-01-12T02:38:31.153 回答
2

这是一个非常好的动画示例

http://android-er.blogspot.com/2012/02/various-effect-of-interpolator-in.html

于 2013-01-12T03:40:51.777 回答