Skip to content

Instantly share code, notes, and snippets.

@Nonda95
Created April 5, 2018 10:44
Show Gist options
  • Save Nonda95/95d57d45fdf0590c3e804885ed211220 to your computer and use it in GitHub Desktop.
Save Nonda95/95d57d45fdf0590c3e804885ed211220 to your computer and use it in GitHub Desktop.
Reload image when transition ends
override fun onCreate(savedInstanceState: Bundle?) {
...
window.sharedElementEnterTransition = TransitionSet()
.addTransition(ChangeImageTransform())
.addTransition(ChangeBounds())
.apply {
doOnEnd { detailImage.load(url) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment