Prevent the status bar and navigation bar from animating during an activity scene animation transition?
On the exiting activity, call getWindow().setExitTransition(null); On the entering activity, call getWindow().setEnterTransition(null); It will prevent the fade out of the exiting activity…