Example usage for Java android.transition TransitionSet fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ORDERING_TOGETHER A flag used to indicate that the child transitions of this set should all start at the same time. |
int | ORDERING_SEQUENTIAL A flag used to indicate that the child transitions of this set should play in sequence; when one child transition ends, the next child transition begins. |
TransitionSet() Constructs an empty transition set. |
TransitionSet | addListener(TransitionListener listener) |
TransitionSet | addTransition(Transition transition) Adds child transition to this set. |
Transition | getTransitionAt(int index) Returns the child Transition at the specified position in the TransitionSet. |
int | getTransitionCount() Returns the number of child transitions in the TransitionSet. |
TransitionSet | removeListener(TransitionListener listener) |
TransitionSet | setDuration(long duration) Setting a non-negative duration on a TransitionSet causes all of the child transitions (current and future) to inherit this duration. |
TransitionSet | setInterpolator(TimeInterpolator interpolator) |