Hi, I would like to animate a view I have to appear like it was
sliding off the screen to the left, and then sliding back to the
screen from the right.

I've tried the following animation set:

<translate
        android:interpolator="@android:anim/
accelerate_decelerate_interpolator"
        android:fromXDelta="0.0"
        android:toXDelta="-100%"
        android:fromYDelta="0.0"
        android:toYDelta="0.0"
        android:fillAfter="false"
        android:duration="1000" />
<translate
        android:interpolator="@android:anim/
accelerate_decelerate_interpolator"
        android:fromXDelta="100%"
        android:toXDelta="0.0"
        android:fromYDelta="0.0"
        android:toYDelta="0.0"
        android:fillAfter="false"
        android:startOffset="1000"
        android:duration="1000" />

I've set the duration of the first and the startOffset of the second
as 1000, so the second should start right after the first ends.
Instead I get their order reversed and I see my view sliding from
right into the screen, and then sliding off the screen to the left.

Reversing the animations order didn't do anything.

Anyone got a clue why is this happening, and how can I do what I want?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to