Skip to content

Instantly share code, notes, and snippets.

@warpdesign
Created May 15, 2014 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warpdesign/7fd755827163ed5cb008 to your computer and use it in GitHub Desktop.
Save warpdesign/7fd755827163ed5cb008 to your computer and use it in GitHub Desktop.
public void onShouldStartActivity() {
// creation of intent to start activity2
Intent intent = new Intent(this, Activity2.class);
startActivity(intent);
// Following the documentation, right after starting the activity
// we override the transition
overridePendingTransition(R.anim.activity_in, R.anim.activity_out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment