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);
これはあなたがそれを大まかに行う方法です。
これはあなたのためのアニメーションの非常に良い例です
http://android-er.blogspot.com/2012/02/various-effect-of-interpolator-in.html