I implemented an image transition between two activities using the new shared elements from lollipop. It\'s working but I get a weird white blinking on the entire screen du
On the exiting activity, call getWindow().setExitTransition(null);
getWindow().setExitTransition(null);
On the entering activity, call getWindow().setEnterTransition(null);
getWindow().setEnterTransition(null);
It will prevent the fade out of the exiting activity and the fade in of the entering activity, which removes the apparent blinking effect.