Hello!

I'm creating an application that has three textviews, and I want them to be presented one by one. I want the presentation to be animated so that the textviews is translated from outside the screen to the right to the left side of the screen. I also want an alpha animation at the same time. This is my XML-file for the animation:

<?xml version="1.0" encoding="UTF-8"?>
  <set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0" 
     android:interpolator="@android:anim/accelerate_interpolator" 
   	 android:duration="1500"
      android:repeatCount="1"/>
   <translate android:fromXDelta="500%p" 
       android:interpolator="@android:anim/accelerate_interpolator" 
       android:toXDelta="0"
       android:duration="1500"/>
 </set>

I have tried this with one textview, and it works. The problem is that the two animation doesn't execute at the same time. First the translate-animation is executed and then the alpha-animation. What am I doing wrong?

Some idea how I should think in order to get the different textviews to start its animations at different times?

Hank