Reputation: 4024
Usually when an Activity
starts using an Intent
,it uses from right to left transitions.i want to start activity that uses from left to right transitions.
How to do this?
Upvotes: 1
Views: 335
Reputation: 4024
I got the solution. Just use the following method after startActivity(intent)
.
Intent oneIntent=new Intent(swipe.this,swipes.class);
startActivity(oneIntent);
overridePendingTransition(R.anim.slide_right_in, R.anim.slide_right_out);
NOTE: Be sure to add animation xml files under res/anim folder.
Upvotes: 4
Reputation: 1755
Maybe this could help http://www.inter-fuser.com/2009/07/android-transistions-slide-in-and-slide.html it is not Activities but at least views sliding.
Upvotes: 0