Transition
abstract class Transition : Cloneable
kotlin.Any | |
↳ | androidx.transition.Transition |
A Transition holds information about animations that will be run on its targets during a scene change. Subclasses of this abstract class may choreograph several child transitions (TransitionSet
or they may perform custom animations themselves. Any Transition has two main jobs: (1) capture property values, and (2) play animations based on changes to captured property values. A custom transition knows what property values on View objects are of interest to it, and also knows how to animate changes to those values. For example, the Fade
transition tracks changes to visibility-related properties and is able to construct and run animations that fade items in or out based on changes to those properties.
Note: Transitions may not work correctly with either SurfaceView
or TextureView
, due to the way that these views are displayed on the screen. For SurfaceView, the problem is that the view is updated from a non-UI thread, so changes to the view due to transitions (such as moving and resizing the view) may be out of sync with the display inside those bounds. TextureView is more compatible with transitions in general, but some specific transitions (such as Fade
) may not be compatible with TextureView because they rely on android.view.ViewOverlay
functionality, which does not currently work with TextureView.
Transitions can be declared in XML resource files inside the res/transition
directory. Transition resources consist of a tag name for one of the Transition subclasses along with attributes to define some of the attributes of that transition. For example, here is a minimal resource file that declares a ChangeBounds
transition:
<changeBounds/>
Note that attributes for the transition are not required, just as they are optional when declared in code; Transitions created from XML resources will use the same defaults as their code-created equivalents. Here is a slightly more elaborate example which declares a TransitionSet
transition with ChangeBounds
and Fade
child transitions:
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android" android:transitionOrdering="sequential"> <changeBounds/> <fade android:fadingMode="fade_out"> <targets> <target android:targetId="@id/grayscaleContainer"/> </targets> </fade> </transitionSet>
In this example, the transitionOrdering attribute is used on the TransitionSet object to change from the default TransitionSet#ORDERING_TOGETHER
behavior to be TransitionSet#ORDERING_SEQUENTIAL
instead. Also, the Fade
transition uses a fadingMode of Fade#OUT
instead of the default out-in behavior. Finally, note the use of the targets
sub-tag, which takes a set of {code target} tags, each of which lists a specific targetId
which this transition acts upon. Use of targets is optional, but can be used to either limit the time spent checking attributes on unchanging views, or limiting the types of animations run on specific views. In this case, we know that only the grayscaleContainer
will be disappearing, so we choose to limit the Fade
transition to only that view.
Summary
Nested classes | |
---|---|
abstract |
Class to get the epicenter of Transition. |
abstract |
A transition listener receives notifications from a transition. |
Constants | |
---|---|
static Int |
With |
static Int |
With |
static Int |
With |
static Int |
With |
Public constructors | |
---|---|
<init>() Constructs a Transition object with no target objects. |
|
<init>(@NonNull context: Context, @NonNull attrs: AttributeSet) Perform inflation from XML and apply a class-specific base style from a theme attribute or style resource. |
Public methods | |
---|---|
open Transition |
addListener(@NonNull listener: Transition.TransitionListener) Adds a listener to the set of listeners that are sent events through the life of an animation, such as start, repeat, and end. |
open Transition |
Sets the target view instances that this Transition is interested in animating. |
open Transition |
Adds the id of a target view that this Transition is interested in animating. |
open Transition |
Adds the transitionName of a target view that this Transition is interested in animating. |
open Transition |
Adds the Class of a target view that this Transition is interested in animating. |
abstract Unit |
captureEndValues(@NonNull transitionValues: TransitionValues) Captures the values in the end scene for the properties that this transition monitors. |
abstract Unit |
captureStartValues(@NonNull transitionValues: TransitionValues) Captures the values in the start scene for the properties that this transition monitors. |
open Transition |
clone() |
open Animator? |
createAnimator(@NonNull sceneRoot: ViewGroup, @Nullable startValues: TransitionValues?, @Nullable endValues: TransitionValues?) This method creates an animation that will be run for this transition given the information in the startValues and endValues structures captured earlier for the start and end scenes. |
open Transition |
excludeChildren(@NonNull target: View, exclude: Boolean) Whether to add the children of given target to the list of target children to exclude from this transition. |
open Transition |
excludeChildren(@IdRes targetId: Int, exclude: Boolean) Whether to add the children of the given id to the list of targets to exclude from this transition. |
open Transition |
excludeChildren(@NonNull type: Class<*>, exclude: Boolean) Whether to add the given type to the list of types whose children should be excluded from this transition. |
open Transition |
excludeTarget(@NonNull target: View, exclude: Boolean) Whether to add the given target to the list of targets to exclude from this transition. |
open Transition |
excludeTarget(@IdRes targetId: Int, exclude: Boolean) Whether to add the given id to the list of target ids to exclude from this transition. |
open Transition |
excludeTarget(@NonNull targetName: String, exclude: Boolean) Whether to add the given transitionName to the list of target transitionNames to exclude from this transition. |
open Transition |
excludeTarget(@NonNull type: Class<*>, exclude: Boolean) Whether to add the given type to the list of types to exclude from this transition. |
open Long |
Returns the duration set on this transition. |
open Rect? |
Returns the epicenter as specified by the |
open Transition.EpicenterCallback? |
Returns the callback used to find the epicenter of the Transition. |
open TimeInterpolator? |
Returns the interpolator set on this transition. |
open String |
getName() Returns the name of this Transition. |
open PathMotion |
Returns the algorithm object used to interpolate along two dimensions. |
open TransitionPropagation? |
Returns the |
open Long |
Returns the startDelay set on this transition. |
open MutableList<Int!> |
Returns the array of target IDs that this transition limits itself to tracking and animating. |
open MutableList<String!>? |
Returns the list of target transitionNames that this transition limits itself to tracking and animating. |
open MutableList<Class<*>!>? |
Returns the list of target transitionNames that this transition limits itself to tracking and animating. |
open MutableList<View!> |
Returns the array of target views that this transition limits itself to tracking and animating. |
open Array<String!>? |
Returns the set of property names used stored in the |
open TransitionValues? |
getTransitionValues(@NonNull view: View, start: Boolean) This method can be called by transitions to get the TransitionValues for any particular view during the transition-playing process. |
open Boolean |
isTransitionRequired(@Nullable startValues: TransitionValues?, @Nullable endValues: TransitionValues?) Returns whether or not the transition should create an Animator, based on the values captured during |