Để show và hide up/down view mà có animation android:
Hướng dẫn để show và hide up/down view mà có animation android
animation move to right
// chạy nhanh dần( accelerate ) và chậm dần( decelerate)
<set
android:interpolator="@android:anima/accelerate_decelerater_interpolator">
android:shareInterpolator="true">
<translate
android:duration="1500" //xảy ra trong 1,5 s
android:fromXDelta="0%p" // chiều X từ 0
android:toXDelta="100%p" // chiều X đến hết
android:fromYDelta="100%p" // chiều Y toàn bộ
android:toYDelta="100%p" > // chiều Y toàn bộ
/set>
retrieve:
FrameLayout container=new FrameLayout(this);
Animation animation=(Animation)AnimationUntil.loadAnimaton(R.anima.move_right);
container.startAnimation(animation);