Transition.Propagation Property
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.
Returns the android.transition.TransitionPropagation
used to calculate Animator start
delays. -or- Sets the method for determining Animator start delays.
public virtual Android.Transitions.TransitionPropagation? Propagation { [Android.Runtime.Register("getPropagation", "()Landroid/transition/TransitionPropagation;", "GetGetPropagationHandler")] get; [Android.Runtime.Register("setPropagation", "(Landroid/transition/TransitionPropagation;)V", "GetSetPropagation_Landroid_transition_TransitionPropagation_Handler")] set; }
[<get: Android.Runtime.Register("getPropagation", "()Landroid/transition/TransitionPropagation;", "GetGetPropagationHandler")>]
[<set: Android.Runtime.Register("setPropagation", "(Landroid/transition/TransitionPropagation;)V", "GetSetPropagation_Landroid_transition_TransitionPropagation_Handler")>]
member this.Propagation : Android.Transitions.TransitionPropagation with get, set
Property Value
the android.transition.TransitionPropagation
used to calculate Animator start
delays. This is null by default.
- Attributes
Remarks
Property getter documentation:
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.
Java documentation for android.transition.Transition.getPropagation()
.
Property setter documentation:
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.
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.