How can I make slide up animation? I got this code thanks to user Romain Piel in this topic. But I can't figure how to make reverse effect. That Animation is for slide down but I want slide up. How can I do that? I am sorry if this is a bad question but animations are always confusing me. I have tried with other codes too but it doesn't look nice.
overridePendingTransition(R.anim.push_down_in,R.anim.push_down_out);
R.anim.push_down_in:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromYDelta="-100%p" android:toYDelta="0" android:duration="900"/>
</set>
R.anim.push_down_out:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromYDelta="0" android:toYDelta="100%p" android:duration="900"/>
</set>