Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save d4rkc0de/b25778394a0475ae293b7f9fd3a49bfc to your computer and use it in GitHub Desktop.
Save d4rkc0de/b25778394a0475ae293b7f9fd3a49bfc to your computer and use it in GitHub Desktop.
Shared Element transition between 2 activities
Pair<View, String> p1 = Pair.create(findViewById(R.id.linearLayout), "camera");
Pair<View, String> p2 = Pair.create(findViewById(R.id.button), "button");
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(MainActivity.this,p1,p2);
startActivity(new Intent(MainActivity.this,Main2Activity.class),options.toBundle());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment