1
我正在對話框上工作,並且我想從下往上動畫它。 我試着用這個代碼: bottom_up.xmlAndroid滑動向上和向下
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="500"
android:fillAfter="true"
android:fromYDelta="125%p"
android:toYDelta="0%p" />
</set>
bottom_down.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="500"
android:fillAfter="true"
android:fromYDelta="0%p"
android:interpolator="@android:anim/linear_interpolator"
android:toYDelta="100%p" />
</set>
以上代碼動畫對話框,屏幕的中心。 但我需要從底部向上滑動,但與底部對齊。並向下滑動。
我該怎麼辦?
我認爲它不適合我 – user3555472
,但它爲我工作。當你使用這個時沒有任何事情發生。 http://karnshah8890.blogspot.in/2013/04/listview-animation-tutorial.html –