Are Activity/Fragment Transitions compatible with pre-Lollipop devices?

No, Activity/Fragment Transitions are not possible on pre-Lollipop devices. According to the documentation: Start an activity with additional launch information, if able. In Android 4.1+ additional options were introduced to allow for more control on activity launch animations. Applications can use this method along with ActivityOptionsCompat to use these animations when available. When run on … Read more

How do I prevent the status bar and navigation bar from animating during an activity scene animation transition?

There are two approaches you can use that I know of to prevent the navigation/status bar from animating during the transition: Approach #1: Exclude the status bar and navigation bar from the window’s default exit/enter fade transition The reason why the navigation/status bar are fading in and out during the transition is because by default … Read more