2
我有一個ScrollView
其中我有佈局作爲它的child.What我加載ScrollView
內的每個佈局使用android:layoutAnimation="@anim/layout"
一個接一個,其中佈局是anim
文件。 這裏是動畫文件ScrollView Animation
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
android:delay="200%"
android:animation="@anim/slide_in_up" />
和slide_in_up
這裏是文件::
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta="100%p"
android:toYDelta="0"
android:duration="@android:integer/config_longAnimTime" />
現在的問題是,我想在滾動情況適用相同的。 作爲用戶滾動所有的佈局應該來一個接一個。我遇到了Scroller
類,但我沒有它的例子。是否有無論如何實現它?