Skip to content

Instantly share code, notes, and snippets.

@zsiegel
Created March 6, 2015 20:41
Show Gist options
  • Save zsiegel/9de976807e4000995059 to your computer and use it in GitHub Desktop.
Save zsiegel/9de976807e4000995059 to your computer and use it in GitHub Desktop.
Android content transition problem
//Setup how the content elements should animate
TransitionSet transitionSet = new TransitionSet();
transitionSet.addTransition(
new Slide(Gravity.TOP).addTarget(R.id.header_container)
//Why do i have to exclude this?
.excludeTarget(R.id.content_container, true));
transitionSet.addTransition(
new Slide(Gravity.BOTTOM).addTarget(R.id.content_container)
//Why do i have to exclude this?
.excludeTarget(R.id.header_container, true));
transitionSet.setInterpolator(AnimationUtil.interpolator());
detailsFragment.setEnterTransition(transitionSet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment