android.support.v17.leanback.widget.FragmentAnimationProvider |
Known Indirect Subclasses |
FragmentAnimationProvider supplies animations for use during a fragment's onCreateAnimator callback. Animators added here will be added to an animation set and played together. This allows presenters used by a fragment to control their own fragment lifecycle animations.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Animates the entry of the fragment in the case where the activity is first being presented.
| |||||||||||
Animates the exit of the fragment in the case where the activity is about to pause.
| |||||||||||
Animates the entry of the fragment in the case where there is a previous step fragment
participating in the animation.
| |||||||||||
Animates the exit of the fragment in the case where there is a previous step fragment
participating in the animation.
| |||||||||||
Animates the re-entry of the fragment in the case where there is a previous step fragment
participating in the animation.
| |||||||||||
Animates the return of the fragment in the case where there is a previous step fragment
participating in the animation.
|
Animates the entry of the fragment in the case where the activity is first being presented.
animators | A list of animations to which this provider's animations should be added. |
---|
Animates the exit of the fragment in the case where the activity is about to pause.
animators | A list of animations to which this provider's animations should be added. |
---|
Animates the entry of the fragment in the case where there is a previous step fragment participating in the animation. Entry occurs when the fragment is preparing to be shown as it is pushed onto the back stack.
animators | A list of animations to which this provider's animations should be added. |
---|
Animates the exit of the fragment in the case where there is a previous step fragment participating in the animation. Exit occurs when the fragment is preparing to be removed, hidden, or detached due to pushing another fragment onto the back stack.
animators | A list of animations to which this provider's animations should be added. |
---|
Animates the re-entry of the fragment in the case where there is a previous step fragment participating in the animation. Re-entry occurs when the fragment is preparing to be shown due to popping the back stack.
animators | A list of animations to which this provider's animations should be added. |
---|
Animates the return of the fragment in the case where there is a previous step fragment participating in the animation. Return occurs when the fragment is preparing to be removed, hidden, or detached due to popping the back stack.
animators | A list of animations to which this provider's animations should be added. |
---|