Android.Views.View.OnSizeChanged Method
This is called during layout when the size of this view has changed.

Syntax

[Android.Runtime.Register("onSizeChanged", "(IIII)V", "GetOnSizeChanged_IIIIHandler")]
protected virtual void OnSizeChanged (int w, int h, int oldw, int oldh)

Parameters

w
Current width of this view.
h
Current height of this view.
oldw
Old width of this view.
oldh
Old height of this view.

Remarks

This is called during layout when the size of this view has changed. If you were just added to the view hierarchy, you're called with the old values of 0.

[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