Android.Views.View.RequestLayout Method
Call this when something has changed which has invalidated the layout of this view.

Syntax

[Android.Runtime.Register("requestLayout", "()V", "GetRequestLayoutHandler")]
public virtual void RequestLayout ()

Remarks

Call this when something has changed which has invalidated the layout of this view. This will schedule a layout pass of the view tree. This should not be called while the view hierarchy is currently in a layout pass (View.IsInLayout. If layout is happening, the request may be honored at the end of the current layout pass (and then layout will run again) or after the current frame is drawn and the next layout occurs.

Subclasses which override this method should call the superclass method to handle possible request-during-layout errors correctly.

[Android Documentation]

Requirements

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