Android: change page without animation (Android 2.2)

No simple & direct blog talk about how to change activity without animation.
Share here.

// Activity a_current = this;
// and A_Target extends Activity
Intent intent = new Intent(a_current, A_Target.class);
a_current.startActivity(intent);
a_current.finish();
a_current.overridePendingTransition(0, 0);

發表留言