Java android.transition TransitionSet fields, constructors, methods, implement or subclass

Example usage for Java android.transition TransitionSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.transition TransitionSet.

The text is from its open source code.

Field

intORDERING_TOGETHER
A flag used to indicate that the child transitions of this set should all start at the same time.
intORDERING_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.

Constructor

TransitionSet()
Constructs an empty transition set.

Method

TransitionSetaddListener(TransitionListener listener)
TransitionSetaddTransition(Transition transition)
Adds child transition to this set.
TransitiongetTransitionAt(int index)
Returns the child Transition at the specified position in the TransitionSet.
intgetTransitionCount()
Returns the number of child transitions in the TransitionSet.
TransitionSetremoveListener(TransitionListener listener)
TransitionSetsetDuration(long duration)
Setting a non-negative duration on a TransitionSet causes all of the child transitions (current and future) to inherit this duration.
TransitionSetsetInterpolator(TimeInterpolator interpolator)