Home | History | Annotate | Download | only in app

Lines Matching defs:exit

106      * Custom exit animation resource ID.
232 * notify the called Activity when the shared element and the exit transitions
660 * exit Transition. The position of the shared element in the launched Activity will be the
664 * enabled on the calling Activity to cause an exit transition. The same must be in
684 * will be used as the epicenter for the exit Transition. The position of the associated
688 * enabled on the calling Activity to cause an exit transition. The same must be in
711 * The exit transition will start immediately and the shared element transition will
727 final ExitTransitionCoordinator exit =
729 if (exit != null) {
730 HideWindowListener listener = new HideWindowListener(window, exit);
731 exit.setHideSharedElementsCallback(listener);
732 exit.startExit();
749 final ExitTransitionCoordinator exit = (ExitTransitionCoordinator)
751 if (exit != null) {
752 exit.cancelPendingTransitions();
755 exit.resetViews();
756 exit.clearState();
789 ExitTransitionCoordinator exit = new ExitTransitionCoordinator(activity, window,
791 opts.mTransitionReceiver = exit;
798 activity.mActivityTransitionState.addExitTransitionCoordinator(exit);
800 return exit;
1579 public HideWindowListener(Window window, ExitTransitionCoordinator exit) {
1581 mExit = exit;
1582 mSharedElements = new ArrayList<>(exit.mSharedElements);
1596 decorView.setTagInternal(com.android.internal.R.id.cross_task_transition, exit);