I need to start an activity in an animated way..can anyone help me?
Creating an intent and starting an activity in normal way will show new activity.I need to start it from one side,say left side..how to animate it near creating intent..
I need to start an activity in an animated way..can anyone help me? Creating
Share
Use the following:
Where R.anim.* are Animation XML files in your /res/anim/ folder.
The following is an example of my
slidein_left:And
slideout_right:What this will do is slide both activities to the left, making the new activity slide in from the left, pushing the old activity out to the right.
Also, as stated by @njzk2, please attempt to make an effort yourself before asking questions, and provide us with things that you may have already tried.