I am trying to slide an Activity from Bottom to Top which I am able to do.
But while sliding from bottom to top my background activity is also sliding to bottom. I want
slide_up.xml
slide_down.xml
stay.xml
Open Activity
startActivity(new Intent(FromActivity.this, ToActivity.class)); overridePendingTransition(R.anim.slide_up, R.anim.stay);
Close Activity
finish(); overridePendingTransition(R.anim.stay, R.anim.slide_down);