I want to create an animation for text, for example, at the airport. Drop on top and change the text on it. Here is the image. Therefore, when I click the button, the text in the image should change with the specified animation. Is this possible with android?

Tell me how can I achieve such an animation in 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 activity class:
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(); }






Now, how do I place vertically animated text on these images so that it looks like the animation I wanted to create?
Thanks AndroidVogue
user744881
source share