Android Custom Animation Animation, как доска расписания аэропорта

Я хочу создать анимацию для текста, как в аэропорту. Сбрасывая сверху и измените текст на него. Вот изображение. Поэтому, когда я нажимаю на кнопку, текст на изображении должен измениться с упомянутой анимацией. Возможно ли это с Android?

enter image description here

Пожалуйста, проведите меня, как я могу достичь такого рода анимации в Android?

Редактировать:

<?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>

Мой класс активности:

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();
}

enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here

Теперь, как разместить вертикальный анимированный текст на эти изображения, так что это Похоже, анимация, которую я хотел создать?

Спасибо, AndroidVogue

7
задан 16 September 2011 в 04:54
поделиться