Package ej.navigation.transition
Transitions animating the page changes of the Navigation Framework.
A Transition animates the replacement of the outgoing page's
content by the incoming one. The Navigator runs one per navigation —
the default one, or the one passed to the navigation call — and the transition signals its
completion through a TransitionListener. It renders itself with
the primitives of the TransitionContext it receives.
The framework ships Transition.IMMEDIATE (the instant,
non-animated default), FadeTransition, and
SlideTransition; an application supplies its own by implementing
Transition. Transitions are parameterized objects, not enum
constants.
-
Interface Summary Interface Description Transition Animates the replacement of the outgoing content by the incoming content during a navigation.TransitionContext The stage on which aTransitionanimates a page change.TransitionListener Notified when aTransitionhas finished. -
Class Summary Class Description FadeTransition A transition that fades the incoming content in over the outgoing one.SlideTransition A transition that slides the incoming content horizontally over the outgoing one.