Android text view transition
I am new to android development. I want to create a splash screen with two text views. In this splash screen I want two transitions 1) Text View 1 transition from top to center 2) text View 2 transition from bottom to center Both transitions should be performed at the same time how to achieve this ? Thanks, Creat an xml file in your anim folder name bottom_to_top.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="2000" android:fillAfter="true" android:fromYDelta="100%p" android:toYDelta="0%p" /> </set> and