views:

266

answers:

1

Hey hey!

In my android app, I'm making a method that pop all activities and bring up the first activity.

I use this code:

Intent intent = new Intent(this, MMConnection.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
this.startActivity(intent);

As I noticed that the transition was still a left to right animation, does someone know if there is a way to change system animation when starting an activity?

Actually, I'd ideally like to have a right to left transition (like when the return button is tapped)

thanks for help!

A: 

You should take a look here.

Of course this requires that you run atleast version 2.0 of the SDK.

CoolMcGrrr