I want to display one activity to another from bottom to top animation using Intent.
Given me some example for that like below
<
As i googled sliding up transition and landed here but Mark answer is incomplete without transition involved on coming back to the same activity.
Overide finish in activity
@Override
public void finish() {
super.finish();
overridePendingTransition(R.anim.slide_from_top,R.anim.slide_in_top);
}
finish()
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
finishAfterTransition();
}else finish();
slide_from_top.xml
slide_in_top.xml