ViewGroup.EndViewTransition(View) 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.
This method should always be called following an earlier call to
#startViewTransition(View)
.
[Android.Runtime.Register("endViewTransition", "(Landroid/view/View;)V", "GetEndViewTransition_Landroid_view_View_Handler")]
public virtual void EndViewTransition (Android.Views.View? view);
[<Android.Runtime.Register("endViewTransition", "(Landroid/view/View;)V", "GetEndViewTransition_Landroid_view_View_Handler")>]
abstract member EndViewTransition : Android.Views.View -> unit
override this.EndViewTransition : Android.Views.View -> unit
Parameters
- view
- View
- Attributes
Remarks
This method should always be called following an earlier call to #startViewTransition(View)
. The given View is finally removed from its parent and will no longer be displayed. Note that this method does not perform the functionality of removing a view from its parent; it just discontinues the display of a View that has previously been removed.
Java documentation for android.view.ViewGroup.endViewTransition(android.view.View)
.
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.