滑进:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator" >
<translate
android:duration="300"
android:fromYDelta="100%p"
android:toYDelta="0" />
</set>
滑出:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator" >
<translate
android:duration="300"
android:fromYDelta="25"
android:toYDelta="100%p" />
</set>
outAnima = AnimationUtils
.loadAnimation(this, R.anim.put_out_frombuttom);
inAnima = AnimationUtils.loadAnimation(this, R.anim.put_in_frombuttom);