34 KiB
Motion
Material motion is a set of transition patterns that help users understand and navigate an app.
Before you can use the motion library, you need to add a dependency on the Material Components for Android library. For more information, go to the Getting started page.
Note: Motion is only available on API level 21 (Android 5.0 Lollipop) and
up. Additionally, the transitions included in the motion library are built using the
Android Framework Transition library (android.transition), not the
AndroidX Transition library (androidx.transition). Make sure any Transition
being used in conjunction with the transitions provided extends
android.transition.* and not androidx.transition.*.
Material Components for Android provides support for all four motion patterns defined in the Material spec.
Container transform
The container transform pattern is designed for transitions between UI elements that include a container. This pattern creates a visible connection between two UI elements.
MaterialContainerTransform is a
shared element transition.
Unlike traditional Android shared elements, it is not designed around a singular
piece of shared content, such as an image, to be moved between two scenes.
Instead, the shared element here refers to the bounding container of a start
View or ViewGroup (e.g. the entire row layout of an item in a list)
transforming its size and shape into that of an end View or ViewGroup (e.g.
the root ViewGroup of a full screen Fragment). These start and end container
Views are the “shared element” of a container transform. While these containers
are being transformed, their contents are swapped to create the transition.
Examples of the container transform:
- A card into a details page
- A list item into a details page
- A FAB into a details page
- A search bar into expanded search
Using the container transform pattern
A container transform can be configured to transition between a number of Android structures including Fragments, Activities and Views.
Container transform examples
Transition between Fragments
In Fragment A and Fragment B's layouts, identify the start and end Views (as described in the [container transform overview](#material-container-transform)) which will be shared. Add a matching `transitionName` to each of these Views.
<!--fragment_a.xml-->
<View
android:id=”@+id/start_view”
android:transitionName=”shared_element_container” />
<!--fragment_b.xml-->
<View
android:id=”@+id/end_view”
android:transitionName=”shared_element_container” />
Note: There cannot be more than a 1:1 mapping of transitionNames between
the start and end layouts. If you have multiple Views in your start layout that
could be mapped to an end View in your end layout (e.g. each RecyclerView item
to a details screen), read about shared element mapping at
Continuous Shared Element Transitions: RecyclerView to ViewPager.
Set Fragment B's sharedElementEnterTransition to a new MaterialContainerTransform. This can be done either before adding/replacing Fragment B into your Fragment container or in Fragment B's onCreate method.
// FragmentA.kt
val fragmentB = FragmentB()
fragmentB.sharedElementEnterTransition = MaterialContainerTransform(requireContext())
/*** OR ***/
// FragmentB.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
sharedElementEnterTransition = MaterialContainerTransform(requireContext())
}
Add or replace Fragment B, adding the shared element from your start scene to your Fragment transaction.
childFragmentManager
.beginTransaction()
// Map the start View in FragmentA and the transitionName of the end View in FragmentB
.addSharedElement(view, “shared_element_container”)
.replace(R.id.fragment_container, fragmentB, FragmentB.TAG)
.addToBackStack(FragmentB.TAG)
.commit()
If using the Navigation Architecture Component, use the following.
// Map the start View in FragmentA and the transitionName of the end View in FragmentB
val extras = FragmentNavigatorExtras(view to “container”)
findNavController().navigate(R.id.action_fragmentA_to_fragmentB, null, null, extras)
Completing these steps should give you a working enter and return container transform when navigating from Fragment A to Fragment B and popping from Fragment B to Fragment A.
Note: Fragments are able to define enter and return shared element transitions. When only an enter shared element transition is set, it will be re-used when the Fragment is popped (returns). MaterialContainerTransform internally configures the transition’s properties based on whether or not it’s entering or returning. If you need to customize either the enter or return style of the transition, see Customizing the container transform.
When running this new transition, you might notice that Fragment A (everything besides the shared element) disappears as soon as the container transform starts. This is because FragmentA has been removed from its container. To “hold” FragmentA in place as the container transform plays, set the provided Hold transition as FragmentA’s exit transition.
// FragmentA.kt
fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// Fragment A’s exitTransition can be set any time before Fragment A is
// replaced withFragment B. Ensure Hold's duration is set to the same
// duration as your MaterialContainerTransform.
exitTransition = Hold()
}
Transition between Activities
In Activity A’s layout, identify the start View to be used as the “shared element” as described in the container transform overview. Give the start view a transitionName.
<!--activity_a.xml-->
<View
android:id=”@+id/start_view”
android:transitionName=”shared_element_container” />
Configure Activity A for an exit shared element transition as follows:
override fun onCreate(bundle: Bundle) {
// Enable Activity Transitions. Optionally enable Activity transitions in your
// theme with <item name=”android:windowActivityTransitions”>true</item>.
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
// Attach a callback used to capture the shared elements from this Activity to be used
// by the container transform transition
setExitSharedElementCallback(MaterialContainerTransformSharedElementCallback())
// Keep system bars (status bar, navigation bar) persistent throughout the transition.
window.sharedElementsUseOverlay = false
super.onCreate(bundle);
setContentView(R.layout.activity_a)
...
}
In Activity B, configure the Activity for transitions in a similar fashion.
override fun onCreate(bundle: Bundle) {
// Enable Activity Transitions. Optionally enable Activity transitions in your
// theme with <item name=”android:windowActivityTransitions”>true</item>.
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
// Set the transition name, which matches Activity A’s start view transition name, on
// the root view.
findViewById(android.R.id.content).transitionName = "shared_element_container"
// Attach a callback used to receive the shared elements from Activity A to be
// used by the container transform transition.
enterSharedElementCallback = MaterialContainerTransformSharedElementCallback()
// Set this Activity’s enter and return transition to a MaterialContainerTransform
window.sharedElementEnterTransition = MaterialContainerTransform(this)
window.sharedElementReturnTransition = MaterialContainerTransform(this)
super.onCreate(bundle);
setContentView(R.layout.activity_b);
...
}
Note: We are using android.R.id.content (the window’s root) as the shared element “container” in Activity B. This will cause the start view being transformed from Activity A to transition into the full screen of Activity B. If you have views in Activity A and Activity B that you do not want included as part of the transform, you can alternatively set the transition name on a View/ViewGroup in Activity B’s layout or include/exclude Views with helper methods on the Transition class (Transition#addTarget, Transition#excludeChildren, etc).
From Activity A, start the container transform by constructing an Intent with the following options.
val intent = Intent(this, ActivityB::class.java);
val options = ActivityOptions.makeSceneTransitionAnimation(
startView,
"shared_element_container" // The transition name to be matched in Activity B.
);
startActivity(intent, options.toBundle());
Transition between Views
In the Activity or Fragment where you are transitioning between two views, trigger a MaterialContainerTransform by manually setting the transition’s start and end Views.
val transform = MaterialContainerTransform(this).apply {
// Manually tell the container transform which Views to transform between.
startView = fab
endView = bottomToolbar
// Optionally add a curved path to the transform
pathMotion = MaterialArcMotion()
// Since View to View transforms often are not transforming into full screens,
// remove the transition's scrim.
scrimColor = Color.TRANSPARENT
}
// Begin the transition by changing properties on the start and end views or
// removing/adding them from the hierarchy.
TransitionManager.beginDelayedTransition(container, transform)
fab.visibility = View.GONE
bottomToolbar.visibility = View.VISIBLE
This will perform a container transform from the start view transitioning to the end view. To return, set up the same transform, switching the start and end Views and undoing any property changes (setting the FAB back to View.VISIBLE and the bottomToolbar back to View.GONE) done by the first transform.
Customization
While the out-of-the-box container transform should work in most cases, you can manually set the following properties on MaterialContainerTransform to customize the look and feel of the animation:
Container transform attributes
| Attribute | Related method(s) | Default value | |
|---|---|---|---|
| Shape | transitionShapeAppearance |
getStartShapeAppearanceModelsetStartShapeAppearanceModelgetEndShapeAppearanceModelsetEndShapeAppearanceModel |
null |
Container transform properties
| Related method(s) | Default value | |
|---|---|---|
| Duration | getDurationsetDuration |
300 |
| Interpolation | getInterpolationsetInterpolation |
R.interpolator.fast_out_slow_in |
| Path Motion | getPathMotionsetPathMotion |
null (Linear) |
| Z Order | getDrawInViewIdsetDrawInViewId |
android.R.id.content |
| Container Background Color | getContainerColorsetContainerColor |
Color.TRANSPARENT |
| Scrim Color | getScrimColorsetScrimColor |
R.attr.scrimBackground |
| Direction | getTransitionDirectionsetTransitionDirection |
TransitionDirection.TRANSITION_DIRECTION_AUTO |
| Fade Mode | getFadeModesetFadeMode |
FadeMode.FADE_MODE_IN |
| Fit Mode | getFitModesetFitMode |
FitMode.FIT_MODE_AUTO |
| Fade Thresholds | getFadeProgressThresholdssetFadeProgressThresholds |
|
| Scale Thresholds | getScaleProgressThresholdssetScaleProgressThresholds |
|
| Scale Mask Thresholds | getScaleMaskProgressThresholdssetScaleMaskProgressThresholds |
|
| Shape Mask Thresholds | getShapeMaskProgressThresholdssetShapeMaskProgressThresholds |
|
| Debug Drawing | isDrawDebugEnabled()setDrawDebugEnabled() |
false |
Note: All of these properties have defaults. In most cases, each property has a different default value depending on whether or not the transition is entering or returning.
When you manually set any of the above properties, the value set will be used when the transition is both entering and returning (including when an enter transition is being re-used due to no return being set). If you need to manually set properties which differ depending on whether or not the transition is entering or returning, create two MaterialContainerTransforms and set both the sharedElementEnterTransition and sharedElementReturnTransition.
Shared axis
The shared axis pattern is used for transitions between UI elements that have a spatial or navigational relationship. This pattern uses a shared transformation on the x, y, or z axis to reinforce the relationship between elements.
Examples of the shared axis pattern:
- An onboarding flow transitions along the x-axis
- A stepper transitions along the y-axis
- A parent-child navigation transitions along the z-axis
Using the shared axis pattern
MaterialSharedAxis is a TransitionSet composed of smaller, “atomic”,
transitions. By default, these atomic transitions extend Visibility, a
Transition which triggers when the target View's visibility is changed or when
the View is added or removed. This means MaterialSharedAxis requires a View to
be changing in visibility or to be added or removed to trigger its animation.
MaterialSharedAxis has the concept of moving in the forward or backward
direction. Below are the directions in which a MaterialSharedAxis will move
for both the forward and backward directions along each axis.
| Axis | Forward | Backward |
|---|---|---|
| X | Left on x-axis | Right on x-axis |
| Y | Up on y-axis | Down on y-axis |
| Z | Forward on z-axis | Backward on z-axis |
A shared axis transition can be configured to transition between a number of Android structures including Fragments, Activities and Views.
Shared axis examples
Transition between Fragments
In the following example, we’re creating a shared axis Z transition between FragmentA and FragmentB. Moving from FragmentA to FragmentB should be a “forward” movement and returning from FragmentB to FragmentA should be a “backward” movement.
In Fragment A, configure an enter and exit transition.
// FragmentA.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val backward = MaterialSharedAxis.create(requireContext(), MaterialSharedAxis.Z, false)
enterTransition = backward
val forward = MaterialSharedAxis.create(requireContext(), MaterialSharedAxis.Z, true)
exitTransition = forward
}
In Fragment B, again configure an enter and exit transition.
// FragmentB.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val forward = MaterialSharedAxis.create(requireContext(), MaterialSharedAxis.Z, true)
enterTransition = forward
val backward = MaterialSharedAxis.create(requireContext(), MaterialSharedAxis.Z, false)
exitTransition = backward
}
It’s important to note here how these two fragments move together. When Fragment
A is exiting, Fragment B will be entering. This is why, in Fragment A, the exit
transition is forward and in Fragment B the enter transition is also
forward. This will ensure that both Fragments are moving in the same direction
when their transitions are playing. The opposite is true in the backwards
direction. When Fragment B is exiting, Fragment A will be entering. For this
reason, Fragment B is configured to exit in the backward direction and Fragment
A is configured to enter in the backward direction.
When you're ready to move from Fragment A to B, replace Fragment A with Fragment B.
supportFragmentManager
.beginTransaction()
.replace(R.id.fragment_container, FragmentB())
.commit();
The above should give you a working shared axis transition between Fragment A
and Fragment B. Changing the axis to MaterialSharedAxis.X or
MaterialSharedAxis.Y will create the same, coordinated interaction in their
respective axis. Alternatively, try replacing MaterialSharedAxis with a
MaterialFadeThrough for a transition between destinations or layouts that are
not spatially related.
Transition between Activities
Enable Activity transitions by either setting
android:windowActivityTransitions to true in your theme or enabling them on an
Activity by Activity basis by setting the Window.FEATURE_ACTIVITY_TRANSITIONS
flag.
<style name="MyTheme" parent="Theme.MaterialComponents.DayNight">
...
<item name="android:windowActivityTransitions">true</item>
</style>
Or in your Activities:
override fun onCreate(savedInstanceState: Bundle?) {
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
...
}
To get started, configure a new shared axis transition in Activity A and set it
as the Activity's exitTransition.
// ActivityA.kt
override fun onCreate(savedInstanceState: Bundle?) {
val exit = MaterialSharedAxis.create(this, MaterialSharedAxis.X, true).apply {
// Only run the transition on the contents of this activity, excluding
// system bars or app bars if provided by the app’s theme.
addTarget(R.id.a_container)
}
window.exitTransition = exit
// TODO: Add a reenter transition in the backwards direction to animate
// ActivityB out and ActivityA back in in the opposite direction.
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_a)
}
You can optionally add or exclude targets to have the transition affect or ignore Views. Use the combination you need to have the transition applied where desired. For example:
val exit = MaterialSharedAxis.create(this, MaterialSharedAxis.X, true).apply {
// Only run the transition on the root ViewGroup of this activity. This will exclude
// other views except what is specified by this method.
addTarget(R.id.a_container)
// OR
// Run the transition on everything except the system status and navigation bars. All
// other Views, besides those explicitly excluded, will be affected by the transition.
excludeTarget(android.R.id.statusBarBackground, true)
excludeTarget(android.R.id.navigationBarBackground, true)
}
Next, configure a new MaterialSharedAxis enter transition in Activity B.
// ActivityB.kt
override fun onCreate(savedInstanceState: Bundle?) {
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
val enter = MaterialSharedAxis.create(this, MaterialSharedAxis.X, true).apply {
addTarget(R.id.b_container)
}
window.enterTransition = enter
// TODO: Configure a return transition in the backwards direction.
// Allow Activity A’s exit transition to play at the same time as this Activity’s
// enter transition instead of playing them sequentially.
window.allowEnterTransitionOverlap = true
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_b)
...
}
When you're ready to navigate from Activity A to Activity B, start Activity B like your normally would.
startActivity(Intent(this, ActivityB::class.java));
Transition between Views
In your Activity or Fragment’s layout, identify the two views which will be
“swapped”. The outgoing View should be added to the layout and visible. The
incoming View's visibility should either be set to View.GONE or the View
should not yet be added to the layout. When you’re ready to replace the outgoing
view with the incoming View, do so with a shared axis transition as follows.
// Set up a new MaterialSharedAxis in the specified ais and direction.
val sharedAxis = MaterialSharedAxis.create(requireContext(), MaterialSharedAxis.Y, true)
// Begin watching for changes in the View hierarchy.
TransitionManager.beginDelayedTransition(container, sharedAxis)
// Make any changes to the hierarchy to be animated by the shared axis transition.
outgoingView.visibility = View.GONE
incomingView.visibility = View.VISIBLE
This will transition between your outgoing and incoming Views with a shared axis
transition. To reverse the animation, set up a new shared axis in the opposite
direction and set your outgoing View back to View.VISIBLE and your incoming
View back to View.GONE.
Customization
MaterialSharedAxis is an extension of MaterialTransitionSet. A
MaterialTransitionSet is composed of a primary and secondary Transition. For
any MaterialTransitionSet, the secondary transition can either be modified or
replaced using MaterialTransitionSet.getSecondaryTransition and
MaterialTransitionSet.setSecondaryTransition.
Shared axis composition
| Primary transition | Secondary transition | |
|---|---|---|
| MaterialSharedAxis | X - | FadeThrough |
- : :
SlideDistance
Y - : : : `SlideDistance`<br>**Z** - : :: `Scale` : :
This allows the tweaking of shared axis to create “variants” as mentioned in the Material Motion spec.
Shared axis fade variant
The following is a `MaterialSharedAxis` Z transition between Activities which fades Activity B in and over Activity A while leaving Activity A’s alpha unchanged can be accomplished by removing the secondary `FadeThrough` transition from Activity A's exit transition.
// ActivityA.kt
override fun onCreate(savedInstanceState: Bundle?) {
val exit = MaterialSharedAxis.create(this, MaterialSharedAxis.Z, true).apply {
// Remove the exit transitions secondary transition completely so this Activity
// only scales instead of scaling and fading out. Alternatively, this could be
// set to a modified FadeThrough transition or any other custom transition.
secondaryTransition = null
addTarget(R.id.main_container)
}
window.exitTransition = exit
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
...
}
Fade Through
The fade through pattern is used for transitions between UI elements that do not have a strong relationship to each other.
Examples of the fade through pattern:
- Tapping destinations in a bottom navigation bar
- Tapping a refresh icon
- Tapping an account switcher
Using the fade through pattern
MaterialFadeThrough is a TransitionSet composed of smaller, “atomic”,
transitions. By default, these atomic transitions extend Visibility, a
Transition which triggers when the target View's visibility is changed or when
the View is added or removed. This means MaterialFadeThrough requires a View
to be changing in visibility or to be added or removed to trigger its animation.
A fade through can be configured to transition between a number of Android structures including Fragments, Activities and Views.
Fade through examples
Transition between Fragments
In Fragment A, configure an exit MaterialFadeThrough transition and in
Fragment B configure an enter MaterialFadeThrough transition. Both of these
will be used (and reused) when navigating from Fragment A to Fragment B and from
Fragment B to Fragment A.
// FragmentA.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
exitTransition = MaterialFadeThrough.create(requireContext())
}
// FragmentB.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enterTransition = MaterialFadeThrough.create(requireContext())
}
Note: Since MaterialFadeThrough's primary and secondary transitions both
extend Visibility, MaterialFadeThrough appropriately animates its targets
depending on whether they are appearing or disappearing.
When you're ready to navigate between Fragment A and Fragment B, use a standard Fragment transaction or use the Navigation Component.
supportFragmentManager
.beginTransaction()
.replace(R.id.fragment_container, FragmentB())
.commit();
Transition between Activities
Enable Activity transitions by either setting
android:windowActivityTransitions to true in your theme or enabling them on an
Activity-by-Activity basis by setting the Window.FEATURE_ACTIVITY_TRANSITIONS
flag.
<style name="MyTheme" parent="Theme.MaterialComponents.DayNight">
...
<item name="android:windowActivityTransitions">true</item>
</style>
Or in your Activities:
override fun onCreate(savedInstanceState: Bundle?) {
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
...
}
To get started, configure a new MaterialFadeThrough in Activity A and set it
as the Activity's exitTransition.
// ActivityA.kt
override fun onCreate(savedInstanceState: Bundle?) {
val exit = MaterialFadeThrough.create(this).apply {
// Only run the transition on the contents of this activity, excluding
// system bars or app bars if provided by the app’s theme.
addTarget(R.id.a_container)
}
window.exitTransition = exit
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_a)
}
You can optionally add or exclude targets to have the transition affect or ignore Views. Use the combination you need to have the transition applied where you’d like. For example:
val exit = MaterialFadeThrough.create(this).apply {
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
// Only run the transition on the root ViewGroup of this activity. This will exclude
// other Views except what is specified by this method.
addTarget(R.id.a_container)
// OR
// Run the transition on everything except the system status and navigation bars. All
// other Views, besides those explicitly excluded, will be affected by the transition.
excludeTarget(android.R.id.statusBarBackground, true)
excludeTarget(android.R.id.navigationBarBackground, true)
}
Next, configure a new MaterialFadeThrough enter transition in Activity B.
// ActivityB.kt
override fun onCreate(savedInstanceState: Bundle?) {
window.requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)
val enter = MaterialFadeThrough.create(this).apply {
addTarget(R.id.b_container)
}
window.enterTransition = enter
// Allow Activity A’s exit transition to play at the same time as this Activity’s
// enter transition instead of playing them sequentially.
window.allowEnterTransitionOverlap = true
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_b)
...
}
When you're ready to navigate from Activity A to Activity B, start Activity B as your normally would.
startActivity(Intent(this, ActivityB::class.java));
Transition between Views
In your Activity or Fragment’s layout, identify the two Views which will be
“swapped”. The outgoing View should be added to the layout and visible. The
incoming View should either be set to View.GONE or not yet added to the
layout. When you’re ready to replace the outgoing View with the incoming View,
do so with a fade through transition as follows.
val fadeThrough = MaterialFadeThrough.create(requireContext())
// Begin watching for changes in the View hierarchy.
TransitionManager.beginDelayedTransition(container, fadeThrough)
// Make any changes to the hierarchy to be animated by the fade through transition.
outgoingView.visibility = View.GONE
incomingView.visibility = View.VISIBLE
This will transition between your outgoing and incoming Views with a fade
through transition. To reverse the animation, follow the same steps, setting
your outgoing View back to View.VISIBLE and your incoming View back to
View.GONE.
Customization
MaterialFadeThrough is an extension of MaterialTransitionSet. A
MaterialTransitionSet is composed of a primary and secondary Transition. For
any MaterialTransitionSet, the secondary transition can either be modified or
replaced using MaterialTransitionSet.getSecondaryTransition and
MaterialTransitionSet.setSecondaryTransition.
Fade through composition
| Primary transition | Secondary transition | |
|---|---|---|
| MaterialFadeThrough | FadeThrough |
Scale |
This allows the tweaking of fade through to create “variants” as mentioned in the Material Motion design spec.
Fade through slide variant
The below will create a fade through between Fragments which fades Fragment A out (without a scale) and fades Fragment B in with a _slide_ instead of a scale.
// FragmentA.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
exitTransition = MaterialFadeThrough.create(requireContext()).apply {
// Remove the exit fade through's secondary scale so this Fragment simply fades out.
secondaryTransition = null
}
}
// FragmentA.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enterTransition = MaterialFadeThrough.create(requireContext()).apply {
// Replace the enter fade through's secondary transition to use a SlideDistance transition.
secondaryTransition = SlideDistance(requireContext(), Gravity.BOTTOM)
}
}
Fade
The fade pattern is used for UI elements that enter or exit within the bounds of the screen, such as a dialog that fades in the center of the screen.
- A dialog
- A menu
- A snackbar
- A FAB
Using the fade pattern
MaterialFade is a TransitionSet composed of smaller, “atomic”, transitions.
By default, these atomic transitions extend Visibility, a Transition which
triggers when the target View's visibility is changed or when the View is added
or removed. This means MaterialFade requires a View to be changing in
visibility or to be added or removed to trigger its animation.
Fade examples
Transition a View
In your Activity or Fragment, toggle the visibility of your target View, in this
case a Floating Action Button, using a MaterialFade to animate the change.
// FragmentA.kt
showButton.setOnClickListener {
val materialFade = MaterialFade.create(this)
TransitionManager.beginDelayedTransition(container, materialFade)
fab.visibility = View.VISIBLE
}
Note: MaterialFade optionally takes an entering parameter in its
create constructor. This controls the duration used by MaterialFade's
primary Fade transition - using a longer duration when true and a shorter
duration when false. By default, MaterialFade is configured to "enter". If
your target View is disappearing, construct a MaterialFade and set the
entering parameter to false.
// FragmentA.kt
hideButton.setOnClickListener {
val materialFade = MaterialFade.create(this, false)
TransitionManager.beginDelayedTransition(container, materialFade)
fab.visibility = View.GONE
}
Customization
MaterialFade is an extension of MaterialTransitionSet. A
MaterialTransitionSet is composed of a primary and secondary Transition. For
any MaterialTransitionSet, the secondary transition can either be modified or
replaced using MaterialTransitionSet.getSecondaryTransition and
MaterialTransitionSet.setSecondaryTransition.
Fade composition
| Primary transition | Secondary transition | |
|---|---|---|
| MaterialFade | Fade |
Scale |
This allows the tweaking of fade to create “variants” as mentioned in the Material Motion design spec.
