Example usage for Java android.transition Fade fields, constructors, methods, implement or subclass
The text is from its open source code.
int | IN Fading mode used in #Fade(int) to make the transition operate on targets that are appearing. |
int | OUT Fading mode used in #Fade(int) to make the transition operate on targets that are disappearing. |
Fade() Constructs a Fade transition that will fade targets in and out. | |
Fade(int fadingMode) Constructs a Fade transition that will fade targets in and/or out, according to the value of fadingMode. |
Transition | addListener(TransitionListener listener) Adds a listener to the set of listeners that are sent events through the life of an animation, such as start, repeat, and end. |
Transition | addTarget(int targetId) Adds the id of a target view that this Transition is interested in animating. |
Transition | setDuration(long duration) Sets the duration of this transition. |
Transition | setStartDelay(long startDelay) Sets the startDelay of this transition. |