Android.Views.ViewGroup.LayoutTransition Property
Gets the LayoutTransition object for this ViewGroup.

Syntax

[get: Android.Runtime.Register("getLayoutTransition", "()Landroid/animation/LayoutTransition;", "GetGetLayoutTransitionHandler")]
[set: Android.Runtime.Register("setLayoutTransition", "(Landroid/animation/LayoutTransition;)V", "GetSetLayoutTransition_Landroid_animation_LayoutTransition_Handler")]
public virtual Android.Animation.LayoutTransition LayoutTransition { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Gets the LayoutTransition object for this ViewGroup. If the LayoutTransition object is not null, changes in layout which occur because of children being added to or removed from the ViewGroup will be animated according to the animations defined in that LayoutTransition object. By default, the transition object is null (so layout changes are not animated).

Set method documentation [Android Documentation]

Sets the LayoutTransition object for this ViewGroup. If the LayoutTransition object is not null, changes in layout which occur because of children being added to or removed from the ViewGroup will be animated according to the animations defined in that LayoutTransition object. By default, the transition object is null (so layout changes are not animated).

Replacing a non-null transition will cause that previous transition to be canceled, if it is currently running, to restore this container to its correct post-transition state.

Requirements

Namespace: Android.Views
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 11