I want to display one activity
to another from bottom to top animation using Intent
.
Given me some example for that like below
<
Define an animation in res/anim/slide_in_up.xml:
and another at res/anim/slide_out_up.xml:
Then apply these after to call startActivity:
Intent i2 = new Intent(main.this, test.class);
startActivity(i2);
overridePendingTransition( R.anim.slide_in_up, R.anim.slide_out_up );
There an introduction to Android animation here which may help you further.