Skip to content

Instantly share code, notes, and snippets.

@chrisjyoon
Last active February 23, 2016 01:09
Show Gist options
  • Select an option

  • Save chrisjyoon/c2c751df4a365a9d2b65 to your computer and use it in GitHub Desktop.

Select an option

Save chrisjyoon/c2c751df4a365a9d2b65 to your computer and use it in GitHub Desktop.
start activity with custom animation
// api >= 16
Intent i = SomeActivity.newIntent(CallerActivity.this, mMember);
Bundle bundle = ActivityOptions.makeCustomAnimation(CallerActivity.this,
R.anim.slide_in_right,
R.anim.slide_out_left).toBundle();
startActivity(i, bundle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment