Android.Views.ViewGroup.StartViewTransition Method
This method tells the ViewGroup that the given View object, which should have this ViewGroup as its parent, should be kept around (re-displayed when the ViewGroup draws its children) even if it is removed from its parent.

Syntax

[Android.Runtime.Register("startViewTransition", "(Landroid/view/View;)V", "GetStartViewTransition_Landroid_view_View_Handler")]
public virtual void StartViewTransition (View view)

Parameters

view
The View object to be kept visible even if it gets removed from its parent.

Remarks

This method tells the ViewGroup that the given View object, which should have this ViewGroup as its parent, should be kept around (re-displayed when the ViewGroup draws its children) even if it is removed from its parent. This allows animations, such as those used by Android.App.Fragment and Android.Animation.LayoutTransition to animate the removal of views. A call to this method should always be accompanied by a later call to ViewGroup.EndViewTransition(View), such as after an animation on the View has finished, so that the View finally gets removed.

[Android Documentation]

Requirements

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