List of usage examples for android.view Window setEnterTransition
public void setEnterTransition(Transition transition)
From source file:Main.java
public static void setEnterTransition(Window window, Transition transition) { if (transition == null) { return;/* ww w . ja v a 2 s .c o m*/ } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { window.setEnterTransition(transition); } }