飛行機のスケジュールボードが空港のようにテキストのアニメーションを作成したいと思います。上から落ちて、その上のテキストを変更します。ここにイメージがあります。だから、ボタンをクリックすると、イメージ上のテキストが前記のアニメーションと共に変わるはずです。アンドロイドで可能ですか?空港のスケジュールボードのようなAndroidのカスタムアニメーション
私はアンドロイドでアニメーションのこの種を達成することができますどのように私を導いてください?
EDIT:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/clockbg1" android:duration="150" />
<item android:drawable="@drawable/clockbg2" android:duration="150" />
<item android:drawable="@drawable/clockbg3" android:duration="150" />
<item android:drawable="@drawable/clockbg4" android:duration="150" />
<item android:drawable="@drawable/clockbg5" android:duration="150" />
<item android:drawable="@drawable/clockbg6" android:duration="150" />
</animation-list>
My活動クラス:
public class XMLAnimation extends Activity {
private static AnimationDrawable animation;
private ImageView refresh;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
refresh = (ImageView) findViewById(R.id.simple_anim);
refresh.setBackgroundResource(R.drawable.loader_animation);
animation = (AnimationDrawable) refresh.getBackground();
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
animation.start();
}
今、私は作成したいアニメーションのように、この画像に垂直にアニメーション化されたテキストをどのように配置するのですか?
おかげで、 AndroidVogue
あなたは私に素晴らしい仕事をしました:) – ingsaurabh
@ingsaurabh、そうです。私は私の小さなプロジェクトのためにそれを実装したい。 –
@AndroidVogue HTC Mobileのようにデジタル時計があることを意味しますか? – Herry