See: Description
| Interface | Description |
|---|---|
| Transition |
Animates the replacement of the outgoing content by the incoming content during a navigation.
|
| TransitionContext |
The stage on which a
Transition animates a page change. |
| TransitionListener |
Notified when a
Transition has finished. |
| 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.
|
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.