I want to display one page to another from bottom to top animation using Intent.
given me some example for that.
like below
Intent i2 = new Intent(main.this, test.class);
startActivity(i2);
with animation bottom to top.
|
I want to display one page to another from bottom to top animation using Intent. given me some example for that. like below
with animation bottom to top. |
|||||||
|
|
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:
There an introduction to Android animation here which may help you further. |
||||
|
|
|
First : animate the layout of your activity 1 ,, Second : at the end of this aniamtion , Start your second Activity , and animate her Content Layout Use TranslateAnimation(int fromX,int toX, int fromY , int toY) ; |
|||
|
|