Transition
public abstract class Transition implements Cloneable
ChangeBounds |
This transition captures the layout bounds of target views before and after the scene change and animates those changes during the transition. |
ChangeClipBounds |
ChangeClipBounds captures the |
ChangeImageTransform |
This Transition captures an ImageView's matrix before and after the scene change and animates it during the transition. |
ChangeScroll |
This transition captures the scroll properties of targets before and after the scene change and animates any changes. |
ChangeTransform |
This Transition captures scale and rotation for Views before and after the scene change and animates those changes during the transition. |
TransitionSet |
A TransitionSet is a parent of child transitions (including other TransitionSets). |
Visibility |
This transition tracks changes to the visibility of target views in the start and end scenes. |
AutoTransition |
Utility class for creating a default transition that automatically fades, moves, and resizes views during a scene change. |
Explode |
This transition tracks changes to the visibility of target views in the start and end scenes and moves views in or out from the edges of the scene. |
Fade |
This transition tracks changes to the visibility of target views in the start and end scenes and fades views in or out when they become visible or non-visible. |
Slide |
This transition tracks changes to the visibility of target views in the start and end scenes and moves views in or out from one of the edges of the scene. |
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 ORDERING_TOGETHER behavior to be ORDERING_SEQUENTIAL instead. Also, the Fade transition uses a fadingMode of 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 types |
|---|
public abstract class Transition.EpicenterCallbackClass to get the epicenter of Transition. |
public interface Transition.TransitionListenerA transition listener receives notifications from a transition. |
Constants |
|
|---|---|
static final int |
MATCH_ID = 3With |
static final int |
MATCH_INSTANCE = 1With |
static final int |
MATCH_ITEM_ID = 4With |
static final int |
MATCH_NAME = 2With |
Public constructors |
|---|
|
Constructs a Transition object with no target objects. |
Transition(@NonNull Context context, @NonNull AttributeSet attrs)Perform inflation from XML and apply a class-specific base style from a theme attribute or style resource. |
Public methods |
|
|---|---|
@NonNull Transition |
addListener(@NonNull Transition.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. |
@NonNull Transition |
Adds the id of a target view that this Transition is interested in animating. |
@NonNull Transition |
Adds the transitionName of a target view that this Transition is interested in animating. |
@NonNull Transition |
Adds the Class of a target view that this Transition is interested in animating. |
@NonNull Transition |
Sets the target view instances that this Transition is interested in animating. |
abstract void |
captureEndValues(@NonNull TransitionValues transitionValues)Captures the values in the end scene for the properties that this transition monitors. |
abstract void |
captureStartValues(@NonNull TransitionValues transitionValues)Captures the values in the start scene for the properties that this transition monitors. |
@NonNull Transition |
clone() |
@Nullable Animator |
createAnimator(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. |
@NonNull Transition |
excludeChildren(@IdRes int targetId, boolean exclude)Whether to add the children of the given id to the list of targets to exclude from this transition. |
@NonNull Transition |
excludeChildren(@NonNull View target, boolean exclude)Whether to add the children of given target to the list of target children to exclude from this transition. |
@NonNull Transition |
excludeChildren(@NonNull Class<Object> type, boolean exclude)Whether to add the given type to the list of types whose children should be excluded from this transition. |
@NonNull Transition |
excludeTarget(@IdRes int targetId, boolean exclude)Whether to add the given id to the list of target ids to exclude from this transition. |
@NonNull Transition |
excludeTarget(@NonNull String targetName, boolean exclude)Whether to add the given transitionName to the list of target transitionNames to exclude from this transition. |
@NonNull Transition |
excludeTarget(@NonNull View target, boolean exclude)Whether to add the given target to the list of targets to exclude from this transition. |
@NonNull Transition |
excludeTarget(@NonNull Class<Object> type, boolean exclude)Whether to add the given type to the list of types to exclude from this transition. |
long |
Returns the duration set on this transition. |
@Nullable Rect |
Returns the epicenter as specified by the |
@Nullable Transition.EpicenterCallback |
Returns the callback used to find the epicenter of the Transition. |
@Nullable TimeInterpolator |
Returns the interpolator set on this transition. |
@NonNull String |
getName()Returns the name of this Transition. |
@NonNull PathMotion |
Returns the algorithm object used to interpolate along two dimensions. |
@Nullable TransitionPropagation |
Returns the |
final @NonNull Transition |
If this Transition is not part of a TransitionSet, this is returned. |
long |
Returns the startDelay set on this transition. |
@NonNull List<Integer> |
Returns the array of target IDs that this transition limits itself to tracking and animating. |
@Nullable List<String> |
Returns the list of target transitionNames that this transition limits itself to tracking and animating. |
@Nullable List<Class<Object>> |
Returns the list of target transitionNames that this transition limits itself to tracking and animating. |
@NonNull List<View> |
Returns the array of target views that this transition limits itself to tracking and animating. |
@Nullable String[] |
Returns the set of property names used stored in the |
@Nullable TransitionValues |
getTransitionValues(@NonNull View view, boolean start)This method can be called by transitions to get the TransitionValues for any particular view during the transition-playing process. |
boolean |
Returns |
boolean |
isTransitionRequired(Returns whether or not the transition should create an Animator, based on the values captured during |
@NonNull Transition |
removeListener(@NonNull Transition.TransitionListener listener)Removes a listener from the set listening to this animation. |
@NonNull Transition |
removeTarget(@NonNull Class<Object> target)Removes the given target from the list of targets that this Transition is interested in animating. |
@NonNull Transition |
removeTarget(@IdRes int targetId)Removes the given targetId from the list of ids that this Transition is interested in animating. |
@NonNull Transition |
removeTarget(@NonNull String targetName)Removes the given targetName from the list of transitionNames that this Transition is interested in animating. |
@NonNull Transition |
removeTarget(@NonNull View target)Removes the given target from the list of targets that this Transition is interested in animating. |
@NonNull Transition |
setDuration(long duration)Sets the duration of this transition. |
void |
setEpicenterCallback(Sets the callback to use to find the epicenter of a Transition. |
@NonNull Transition |
setInterpolator(@Nullable TimeInterpolator interpolator)Sets the interpolator of this transition. |
void |
setMatchOrder(@Nullable int[] matches)Sets the order in which Transition matches View start and end values. |
void |
setPathMotion(@Nullable PathMotion pathMotion)Sets the algorithm used to calculate two-dimensional interpolation. |
void |
setPropagation(@Nullable TransitionPropagation transitionPropagation)Sets the method for determining Animator start delays. |
@NonNull Transition |
setStartDelay(long startDelay)Sets the startDelay of this transition. |
@NonNull String |
toString() |
Extension functions |
|
|---|---|
final @NonNull Transition.TransitionListener |
TransitionKt.addListener(Add a listener to this Transition using the provided actions. |
final @NonNull Transition.TransitionListener |
TransitionKt.doOnCancel(Add an action which will be invoked when this transition has been cancelled. |
final @NonNull Transition.TransitionListener |
TransitionKt.doOnEnd(Add an action which will be invoked when this transition has ended. |
final @NonNull Transition.TransitionListener |
TransitionKt.doOnPause(Add an action which will be invoked when this transition has been paused. |
final @NonNull Transition.TransitionListener |
TransitionKt.doOnResume(Add an action which will be invoked when this transition has resumed after a pause. |
final @NonNull Transition.TransitionListener |
TransitionKt.doOnStart(Add an action which will be invoked when this transition has started. |
Constants
MATCH_ID
public static final int MATCH_ID = 3
With setMatchOrder, chooses to match by getId. Negative IDs will not be matched.
MATCH_INSTANCE
public static final int MATCH_INSTANCE = 1
With setMatchOrder, chooses to match by View instance.
MATCH_ITEM_ID
public static final int MATCH_ITEM_ID = 4
With setMatchOrder, chooses to match by the android.widget.Adapter item id. When hasStableIds returns false, no match will be made for items.
MATCH_NAME
public static final int MATCH_NAME = 2
With setMatchOrder, chooses to match by getTransitionName. Null names will not be matched.
Public constructors
Transition
public Transition()
Constructs a Transition object with no target objects. A transition with no targets defaults to running on all target objects in the scene hierarchy (if the transition is not contained in a TransitionSet), or all target objects passed down from its parent (if it is in a TransitionSet).
Transition
public Transition(@NonNull Context context, @NonNull AttributeSet attrs)
Perform inflation from XML and apply a class-specific base style from a theme attribute or style resource. This constructor of Transition allows subclasses to use their own base style when they are inflating.
| Parameters | |
|---|---|
@NonNull Context context |
The Context the transition is running in, through which it can access the current theme, resources, etc. |
@NonNull AttributeSet attrs |
The attributes of the XML tag that is inflating the transition. |
Public methods
addListener
public @NonNull Transition addListener(@NonNull Transition.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.
| Parameters | |
|---|---|
@NonNull Transition.TransitionListener listener |
the listener to be added to the current set of listeners for this animation. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
addTarget
public @NonNull Transition addTarget(@IdRes int targetId)
Adds the id of a target view that this Transition is interested in animating. By default, there are no targetIds, and a Transition will listen for changes on every view in the hierarchy below the sceneRoot of the Scene being transitioned into. Setting targetIds constrains the Transition to only listen for, and act on, views with these IDs. Views with different IDs, or no IDs whatsoever, will be ignored.
Note that using ids to specify targets implies that ids should be unique within the view hierarchy underneath the scene root.
| Parameters | |
|---|---|
@IdRes int targetId |
The id of a target view, must be a positive number. |
| Returns | |
|---|---|
@NonNull Transition |
The Transition to which the targetId is added. Returning the same object makes it easier to chain calls during construction, such as |
| See also | |
|---|---|
getId |
addTarget
public @NonNull Transition addTarget(@NonNull String targetName)
Adds the transitionName of a target view that this Transition is interested in animating. By default, there are no targetNames, and a Transition will listen for changes on every view in the hierarchy below the sceneRoot of the Scene being transitioned into. Setting targetNames constrains the Transition to only listen for, and act on, views with these transitionNames. Views with different transitionNames, or no transitionName whatsoever, will be ignored.
Note that transitionNames should be unique within the view hierarchy.
| Returns | |
|---|---|
@NonNull Transition |
The Transition to which the target transitionName is added. Returning the same object makes it easier to chain calls during construction, such as |
| See also | |
|---|---|
getTransitionName |
addTarget
public @NonNull Transition addTarget(@NonNull Class<Object> targetType)
Adds the Class of a target view that this Transition is interested in animating. By default, there are no targetTypes, and a Transition will listen for changes on every view in the hierarchy below the sceneRoot of the Scene being transitioned into. Setting targetTypes constrains the Transition to only listen for, and act on, views with these classes. Views with different classes will be ignored.
Note that any View that can be cast to targetType will be included, so if targetType is View.class, all Views will be included.
| Returns | |
|---|---|
@NonNull Transition |
The Transition to which the target class was added. Returning the same object makes it easier to chain calls during construction, such as |
| See also | |
|---|---|
addTarget |
|
addTarget |
|
excludeTarget |
|
excludeChildren |
addTarget
public @NonNull Transition addTarget(@NonNull View target)
Sets the target view instances that this Transition is interested in animating. By default, there are no targets, and a Transition will listen for changes on every view in the hierarchy below the sceneRoot of the Scene being transitioned into. Setting targets constrains the Transition to only listen for, and act on, these views. All other views will be ignored.
The target list is like the targetId list except this list specifies the actual View instances, not the ids of the views. This is an important distinction when scene changes involve view hierarchies which have been inflated separately; different views may share the same id but not actually be the same instance. If the transition should treat those views as the same, then addTarget should be used instead of addTarget. If, on the other hand, scene changes involve changes all within the same view hierarchy, among views which do not necessarily have ids set on them, then the target list of views may be more convenient.
| Returns | |
|---|---|
@NonNull Transition |
The Transition to which the target is added. Returning the same object makes it easier to chain calls during construction, such as |
| See also | |
|---|---|
addTarget |
captureEndValues
public abstract void captureEndValues(@NonNull TransitionValues transitionValues)
Captures the values in the end scene for the properties that this transition monitors. These values are then passed as the endValues structure in a later call to createAnimator. The main concern for an implementation is what the properties are that the transition cares about and what the values are for all of those properties. The start and end values will be compared later during the createAnimator method to determine what, if any, animations, should be run.
Subclasses must implement this method. The method should only be called by the transition system; it is not intended to be called from external classes.
| Parameters | |
|---|---|
@NonNull TransitionValues transitionValues |
The holder for any values that the Transition wishes to store. Values are stored in the |
| See also | |
|---|---|
captureStartValues |
|
createAnimator |
captureStartValues
public abstract void captureStartValues(@NonNull TransitionValues transitionValues)
Captures the values in the start scene for the properties that this transition monitors. These values are then passed as the startValues structure in a later call to createAnimator. The main concern for an implementation is what the properties are that the transition cares about and what the values are for all of those properties. The start and end values will be compared later during the createAnimator method to determine what, if any, animations, should be run.
Subclasses must implement this method. The method should only be called by the transition system; it is not intended to be called from external classes.
| Parameters | |
|---|---|
@NonNull TransitionValues transitionValues |
The holder for any values that the Transition wishes to store. Values are stored in the |
| See also | |
|---|---|
captureEndValues |
|
createAnimator |
createAnimator
public @Nullable Animator createAnimator(
@NonNull ViewGroup sceneRoot,
@Nullable TransitionValues startValues,
@Nullable TransitionValues endValues
)
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. Subclasses of Transition should override this method. The method should only be called by the transition system; it is not intended to be called from external classes.
This method is called by the transition's parent (all the way up to the topmost Transition in the hierarchy) with the sceneRoot and start/end values that the transition may need to set up initial target values and construct an appropriate animation. For example, if an overall Transition is a TransitionSet consisting of several child transitions in sequence, then some of the child transitions may want to set initial values on target views prior to the overall Transition commencing, to put them in an appropriate state for the delay between that start and the child Transition start time. For example, a transition that fades an item in may wish to set the starting alpha value to 0, to avoid it blinking in prior to the transition actually starting the animation. This is necessary because the scene change that triggers the Transition will automatically set the end-scene on all target views, so a Transition that wants to animate from a different value should set that value prior to returning from this method.
Additionally, a Transition can perform logic to determine whether the transition needs to run on the given target and start/end values. For example, a transition that resizes objects on the screen may wish to avoid running for views which are not present in either the start or end scenes.
If there is an animator created and returned from this method, the transition mechanism will apply any applicable duration, startDelay, and interpolator to that animation and start it. A return value of null indicates that no animation should run. The default implementation returns null.
The method is called for every applicable target object, which is stored in the view field.
| Parameters | |
|---|---|
@NonNull ViewGroup sceneRoot |
The root of the transition hierarchy. |
@Nullable TransitionValues startValues |
The values for a specific target in the start scene. |
@Nullable TransitionValues endValues |
The values for the target in the end scene. |
excludeChildren
public @NonNull Transition excludeChildren(@IdRes int targetId, boolean exclude)
Whether to add the children of the given id to the list of targets to exclude from this transition. The exclude parameter specifies whether the children of the target should be added to or removed from the excluded list. Excluding children in this way provides a simple mechanism for excluding all children of specific targets, rather than individually excluding each child individually.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@IdRes int targetId |
The id of a target whose children should be ignored when running this transition. |
boolean exclude |
Whether to add the target to or remove the target from the current list of excluded-child targets. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeTarget |
|
excludeChildren |
|
excludeChildren |
excludeChildren
public @NonNull Transition excludeChildren(@NonNull View target, boolean exclude)
Whether to add the children of given target to the list of target children to exclude from this transition. The exclude parameter specifies whether the target should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@NonNull View target |
The target to ignore when running this transition. |
boolean exclude |
Whether to add the target to or remove the target from the current list of excluded targets. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeTarget |
|
excludeChildren |
|
excludeChildren |
excludeChildren
public @NonNull Transition excludeChildren(@NonNull Class<Object> type, boolean exclude)
Whether to add the given type to the list of types whose children should be excluded from this transition. The exclude parameter specifies whether the target type should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@NonNull Class<Object> type |
The type to ignore when running this transition. |
boolean exclude |
Whether to add the target type to or remove it from the current list of excluded target types. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeTarget |
|
excludeChildren |
|
excludeChildren |
excludeTarget
public @NonNull Transition excludeTarget(@IdRes int targetId, boolean exclude)
Whether to add the given id to the list of target ids to exclude from this transition. The exclude parameter specifies whether the target should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@IdRes int targetId |
The id of a target to ignore when running this transition. |
boolean exclude |
Whether to add the target to or remove the target from the current list of excluded targets. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeChildren |
|
excludeTarget |
|
excludeTarget |
excludeTarget
public @NonNull Transition excludeTarget(@NonNull String targetName, boolean exclude)
Whether to add the given transitionName to the list of target transitionNames to exclude from this transition. The exclude parameter specifies whether the target should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded by their id, their instance reference, their transitionName, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@NonNull String targetName |
The name of a target to ignore when running this transition. |
boolean exclude |
Whether to add the target to or remove the target from the current list of excluded targets. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeTarget |
|
excludeTarget |
|
excludeTarget |
excludeTarget
public @NonNull Transition excludeTarget(@NonNull View target, boolean exclude)
Whether to add the given target to the list of targets to exclude from this transition. The exclude parameter specifies whether the target should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@NonNull View target |
The target to ignore when running this transition. |
boolean exclude |
Whether to add the target to or remove the target from the current list of excluded targets. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeChildren |
|
excludeTarget |
|
excludeTarget |
excludeTarget
public @NonNull Transition excludeTarget(@NonNull Class<Object> type, boolean exclude)
Whether to add the given type to the list of types to exclude from this transition. The exclude parameter specifies whether the target type should be added to or removed from the excluded list.
Excluding targets is a general mechanism for allowing transitions to run on a view hierarchy while skipping target views that should not be part of the transition. For example, you may want to avoid animating children of a specific ListView or Spinner. Views can be excluded either by their id, or by their instance reference, or by the Class of that view (eg, Spinner).
| Parameters | |
|---|---|
@NonNull Class<Object> type |
The type to ignore when running this transition. |
boolean exclude |
Whether to add the target type to or remove it from the current list of excluded target types. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
| See also | |
|---|---|
excludeChildren |
|
excludeTarget |
|
excludeTarget |
getDuration
public long getDuration()
Returns the duration set on this transition. If no duration has been set, the returned value will be negative, indicating that resulting animators will retain their own durations.
| Returns | |
|---|---|
long |
The duration set on this transition, in milliseconds, if one has been set, otherwise returns a negative number. |
getEpicenter
public @Nullable Rect getEpicenter()
Returns the epicenter as specified by the android.transition.Transition.EpicenterCallback or null if no callback exists.
| Returns | |
|---|---|
@Nullable Rect |
the epicenter as specified by the |
| See also | |
|---|---|
setEpicenterCallback |
getEpicenterCallback
public @Nullable Transition.EpicenterCallback getEpicenterCallback()
Returns the callback used to find the epicenter of the Transition. Transitions like android.transition.Explode use a point or Rect to orient the direction of travel. This is called the epicenter of the Transition and is typically centered on a touched View. The android.transition.Transition.EpicenterCallback allows a Transition to dynamically retrieve the epicenter during a Transition.
| Returns | |
|---|---|
@Nullable Transition.EpicenterCallback |
the callback used to find the epicenter of the Transition. |
getInterpolator
public @Nullable TimeInterpolator getInterpolator()
Returns the interpolator set on this transition. If no interpolator has been set, the returned value will be null, indicating that resulting animators will retain their own interpolators.
| Returns | |
|---|---|
@Nullable TimeInterpolator |
The interpolator set on this transition, if one has been set, otherwise returns null. |
getName
public @NonNull String getName()
Returns the name of this Transition. This name is used internally to distinguish between different transitions to determine when interrupting transitions overlap. For example, a ChangeBounds running on the same target view as another ChangeBounds should determine whether the old transition is animating to different end values and should be canceled in favor of the new transition.
By default, a Transition's name is simply the value of getName, but subclasses are free to override and return something different.
getPathMotion
public @NonNull PathMotion getPathMotion()
Returns the algorithm object used to interpolate along two dimensions. This is typically used to determine the View motion between two points.
| Returns | |
|---|---|
@NonNull PathMotion |
The algorithm object used to interpolate along two dimensions. |
| See also | |
|---|---|
ArcMotion |
|
PatternPathMotion |
|
PathMotion |
getPropagation
public @Nullable TransitionPropagation getPropagation()
Returns the android.transition.TransitionPropagation used to calculate Animator start delays. When a Transition affects several Views like android.transition.Explode or android.transition.Slide, there may be a desire to have a "wave-front" effect such that the Animator start delay depends on position of the View. The TransitionPropagation specifies how the start delays are calculated.
| Returns | |
|---|---|
@Nullable TransitionPropagation |
the |
getRootTransition
public final @NonNull Transition getRootTransition()
If this Transition is not part of a TransitionSet, this is returned. If it is part of a TransitionSet, the parent TransitionSets are walked until a TransitionSet is found that isn't contained in another TransitionSet.
getStartDelay
public long getStartDelay()
Returns the startDelay set on this transition. If no startDelay has been set, the returned value will be negative, indicating that resulting animators will retain their own startDelays.
| Returns | |
|---|---|
long |
The startDelay set on this transition, in milliseconds, if one has been set, otherwise returns a negative number. |
getTargetIds
public @NonNull List<Integer> getTargetIds()
Returns the array of target IDs that this transition limits itself to tracking and animating. If the array is null for both this method and getTargets, then this transition is not limited to specific views, and will handle changes to any views in the hierarchy of a scene change.
getTargetNames
public @Nullable List<String> getTargetNames()
Returns the list of target transitionNames that this transition limits itself to tracking and animating. If the list is null or empty for getTargetIds, getTargets, getTargetNames, and getTargetTypes then this transition is not limited to specific views, and will handle changes to any views in the hierarchy of a scene change.
getTargetTypes
public @Nullable List<Class<Object>> getTargetTypes()
Returns the list of target transitionNames that this transition limits itself to tracking and animating. If the list is null or empty for getTargetIds, getTargets, getTargetNames, and getTargetTypes then this transition is not limited to specific views, and will handle changes to any views in the hierarchy of a scene change.
getTargets
public @NonNull List<View> getTargets()
Returns the array of target views that this transition limits itself to tracking and animating. If the array is null for both this method and getTargetIds, then this transition is not limited to specific views, and will handle changes to any views in the hierarchy of a scene change.
getTransitionProperties
public @Nullable String[] getTransitionProperties()
Returns the set of property names used stored in the TransitionValues object passed into captureStartValues that this transition cares about for the purposes of canceling overlapping animations. When any transition is started on a given scene root, all transitions currently running on that same scene root are checked to see whether the properties on which they based their animations agree with the end values of the same properties in the new transition. If the end values are not equal, then the old animation is canceled since the new transition will start a new animation to these new values. If the values are equal, the old animation is allowed to continue and no new animation is started for that transition.
A transition does not need to override this method. However, not doing so will mean that the cancellation logic outlined in the previous paragraph will be skipped for that transition, possibly leading to artifacts as old transitions and new transitions on the same targets run in parallel, animating views toward potentially different end values.
| Returns | |
|---|---|
@Nullable String[] |
An array of property names as described in the class documentation for |
getTransitionValues
public @Nullable TransitionValues getTransitionValues(@NonNull View view, boolean start)
This method can be called by transitions to get the TransitionValues for any particular view during the transition-playing process. This might be necessary, for example, to query the before/after state of related views for a given transition.
isSeekingSupported
public boolean isSeekingSupported()
Returns true if the Transition can be used by controlDelayedTransition. This means that any the state must be ready before any Animator returned by createAnimator has started and if the Animator has ended, it must be able to restore the state when starting in reverse. If a Transition must know when the entire transition has ended, a TransitionListener can be added to getRootTransition and it can listen for onTransitionEnd.
isTransitionRequired
public boolean isTransitionRequired(
@Nullable TransitionValues startValues,
@Nullable TransitionValues endValues
)
Returns whether or not the transition should create an Animator, based on the values captured during captureStartValues and captureEndValues. The default implementation compares the property values returned from getTransitionProperties, or all property values if getTransitionProperties() returns null. Subclasses may override this method to provide logic more specific to the transition implementation.
| Parameters | |
|---|---|
@Nullable TransitionValues startValues |
the values from captureStartValues, This may be |
@Nullable TransitionValues endValues |
the values from captureEndValues. This may be |
removeListener
public @NonNull Transition removeListener(@NonNull Transition.TransitionListener listener)
Removes a listener from the set listening to this animation.
| Parameters | |
|---|---|
@NonNull Transition.TransitionListener listener |
the listener to be removed from the current set of listeners for this transition. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
removeTarget
public @NonNull Transition removeTarget(@NonNull Class<Object> target)
Removes the given target from the list of targets that this Transition is interested in animating.
| Returns | |
|---|---|
@NonNull Transition |
Transition The Transition from which the target is removed. Returning the same object makes it easier to chain calls during construction, such as |
removeTarget
public @NonNull Transition removeTarget(@IdRes int targetId)
Removes the given targetId from the list of ids that this Transition is interested in animating.
| Parameters | |
|---|---|
@IdRes int targetId |
The id of a target view, must be a positive number. |
| Returns | |
|---|---|
@NonNull Transition |
The Transition from which the targetId is removed. Returning the same object makes it easier to chain calls during construction, such as |
removeTarget
public @NonNull Transition removeTarget(@NonNull String targetName)
Removes the given targetName from the list of transitionNames that this Transition is interested in animating.
| Returns | |
|---|---|
@NonNull Transition |
The Transition from which the targetName is removed. Returning the same object makes it easier to chain calls during construction, such as |
removeTarget
public @NonNull Transition removeTarget(@NonNull View target)
Removes the given target from the list of targets that this Transition is interested in animating.
| Returns | |
|---|---|
@NonNull Transition |
Transition The Transition from which the target is removed. Returning the same object makes it easier to chain calls during construction, such as |
setDuration
public @NonNull Transition setDuration(long duration)
Sets the duration of this transition. By default, there is no duration (indicated by a negative number), which means that the Animator created by the transition will have its own specified duration. If the duration of a Transition is set, that duration will override the Animator duration.
| Parameters | |
|---|---|
long duration |
The length of the animation, in milliseconds. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
setEpicenterCallback
public void setEpicenterCallback(
@Nullable Transition.EpicenterCallback epicenterCallback
)
Sets the callback to use to find the epicenter of a Transition. A null value indicates that there is no epicenter in the Transition and onGetEpicenter() will return null. Transitions like android.transition.Explode use a point or Rect to orient the direction of travel. This is called the epicenter of the Transition and is typically centered on a touched View. The android.transition.Transition.EpicenterCallback allows a Transition to dynamically retrieve the epicenter during a Transition.
| Parameters | |
|---|---|
@Nullable Transition.EpicenterCallback epicenterCallback |
The callback to use to find the epicenter of the Transition. |
setInterpolator
public @NonNull Transition setInterpolator(@Nullable TimeInterpolator interpolator)
Sets the interpolator of this transition. By default, the interpolator is null, which means that the Animator created by the transition will have its own specified interpolator. If the interpolator of a Transition is set, that interpolator will override the Animator interpolator.
| Parameters | |
|---|---|
@Nullable TimeInterpolator interpolator |
The time interpolator used by the transition |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
setMatchOrder
public void setMatchOrder(@Nullable int[] matches)
Sets the order in which Transition matches View start and end values.
The default behavior is to match first by getTransitionName, then by View instance, then by getId and finally by its item ID if it is in a direct child of ListView. The caller can choose to have only some or all of the values of MATCH_INSTANCE, MATCH_NAME, MATCH_ITEM_ID, and MATCH_ID. Only the match algorithms supplied will be used to determine whether Views are the the same in both the start and end Scene. Views that do not match will be considered as entering or leaving the Scene.
| Parameters | |
|---|---|
@Nullable int[] matches |
A list of zero or more of |
setPathMotion
public void setPathMotion(@Nullable PathMotion pathMotion)
Sets the algorithm used to calculate two-dimensional interpolation.
Transitions such as android.transition.ChangeBounds move Views, typically in a straight path between the start and end positions. Applications that desire to have these motions move in a curve can change how Views interpolate in two dimensions by extending PathMotion and implementing getPath.
| Parameters | |
|---|---|
@Nullable PathMotion pathMotion |
Algorithm object to use for determining how to interpolate in two dimensions. If null, a straight-path algorithm will be used. |
| See also | |
|---|---|
ArcMotion |
|
PatternPathMotion |
|
PathMotion |
setPropagation
public void setPropagation(@Nullable TransitionPropagation transitionPropagation)
Sets the method for determining Animator start delays. When a Transition affects several Views like android.transition.Explode or android.transition.Slide, there may be a desire to have a "wave-front" effect such that the Animator start delay depends on position of the View. The TransitionPropagation specifies how the start delays are calculated.
| Parameters | |
|---|---|
@Nullable TransitionPropagation transitionPropagation |
The class used to determine the start delay of Animators created by this Transition. A null value indicates that no delay should be used. |
setStartDelay
public @NonNull Transition setStartDelay(long startDelay)
Sets the startDelay of this transition. By default, there is no delay (indicated by a negative number), which means that the Animator created by the transition will have its own specified startDelay. If the delay of a Transition is set, that delay will override the Animator delay.
| Parameters | |
|---|---|
long startDelay |
The length of the delay, in milliseconds. |
| Returns | |
|---|---|
@NonNull Transition |
This transition object. |
Extension functions
TransitionKt.addListener
public final @NonNull Transition.TransitionListener TransitionKt.addListener(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> onEnd,
@NonNull Function1<@NonNull Transition, Unit> onStart,
@NonNull Function1<@NonNull Transition, Unit> onCancel,
@NonNull Function1<@NonNull Transition, Unit> onResume,
@NonNull Function1<@NonNull Transition, Unit> onPause
)
Add a listener to this Transition using the provided actions.
TransitionKt.doOnCancel
public final @NonNull Transition.TransitionListener TransitionKt.doOnCancel(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> action
)
Add an action which will be invoked when this transition has been cancelled.
TransitionKt.doOnEnd
public final @NonNull Transition.TransitionListener TransitionKt.doOnEnd(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> action
)
Add an action which will be invoked when this transition has ended.
TransitionKt.doOnPause
public final @NonNull Transition.TransitionListener TransitionKt.doOnPause(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> action
)
Add an action which will be invoked when this transition has been paused.
TransitionKt.doOnResume
public final @NonNull Transition.TransitionListener TransitionKt.doOnResume(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> action
)
Add an action which will be invoked when this transition has resumed after a pause.
TransitionKt.doOnStart
public final @NonNull Transition.TransitionListener TransitionKt.doOnStart(
@NonNull Transition receiver,
@NonNull Function1<@NonNull Transition, Unit> action
)
Add an action which will be invoked when this transition has started.