TransitionManager.BeginDelayedTransition Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| BeginDelayedTransition(ViewGroup) |
Convenience method to animate, using the default transition, to a new scene defined by all changes within the given scene root between calling this method and the next rendering frame. |
| BeginDelayedTransition(ViewGroup, Transition) |
Convenience method to animate to a new scene defined by all changes within the given scene root between calling this method and the next rendering frame. |
BeginDelayedTransition(ViewGroup)
Convenience method to animate, using the default transition, to a new scene defined by all changes within the given scene root between calling this method and the next rendering frame.
[Android.Runtime.Register("beginDelayedTransition", "(Landroid/view/ViewGroup;)V", "")]
public static void BeginDelayedTransition (Android.Views.ViewGroup? sceneRoot);
[<Android.Runtime.Register("beginDelayedTransition", "(Landroid/view/ViewGroup;)V", "")>]
static member BeginDelayedTransition : Android.Views.ViewGroup -> unit
Parameters
- sceneRoot
- ViewGroup
The root of the View hierarchy to run the transition on.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
BeginDelayedTransition(ViewGroup, Transition)
Convenience method to animate to a new scene defined by all changes within the given scene root between calling this method and the next rendering frame.
[Android.Runtime.Register("beginDelayedTransition", "(Landroid/view/ViewGroup;Landroid/transition/Transition;)V", "")]
public static void BeginDelayedTransition (Android.Views.ViewGroup? sceneRoot, Android.Transitions.Transition? transition);
[<Android.Runtime.Register("beginDelayedTransition", "(Landroid/view/ViewGroup;Landroid/transition/Transition;)V", "")>]
static member BeginDelayedTransition : Android.Views.ViewGroup * Android.Transitions.Transition -> unit
Parameters
- sceneRoot
- ViewGroup
The root of the View hierarchy to run the transition on.
- transition
- Transition
The transition to use for this change. A value of null causes the TransitionManager to use the default transition.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.