KeyboardView.OnSizeChanged(Int32, Int32, Int32, Int32) 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 is called during layout when the size of this view has changed.
[Android.Runtime.Register("onSizeChanged", "(IIII)V", "GetOnSizeChanged_IIIIHandler")]
public virtual void OnSizeChanged (int w, int h, int oldw, int oldh);
[<Android.Runtime.Register("onSizeChanged", "(IIII)V", "GetOnSizeChanged_IIIIHandler")>]
override this.OnSizeChanged : int * int * int * int -> unit
Parameters
- w
- Int32
Current width of this view.
- h
- Int32
Current height of this view.
- oldw
- Int32
Old width of this view.
- oldh
- Int32
Old height of this view.
- Attributes
Remarks
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.