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 に答える