2012-12-24 23 views
0

這是我的幻燈片動畫。Android:動畫總是落在中心

<translate xmlns:android="http://schemas.android.com/apk/res/android" 
    android:duration="@android:integer/config_longAnimTime" 
    android:fromYDelta="-100%p" 
    android:toYDelta="-30%p" /> 

幻燈片沒問題。但觀點總是最終落在屏幕的中心。上述代碼有問題嗎?

謝謝, Rahul。

回答

1

您必須將屬性fillAfter設置爲「true」。

代碼:

animation.setFillEnabled(true); 
animation.setFillAfter(true); 

XML:

<set 
    android:fillEnabled="true" 
    android:fillAfter="true" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 

    <translate 
    android:duration="@android:integer/config_longAnimTime" 
    android:fromYDelta="-100%p" 
    android:toYDelta="-30%p" /> 

</set> 

希望幫助!