Language

FragmentBreadCrumbs.OnLayout(Boolean, Int32, Int32, Int32, Int32) Method

Definition

Caution

deprecated

Called from layout when this view should assign a size and position to each of its children.

[Android.Runtime.Register("onLayout", "(ZIIII)V", "GetOnLayout_ZIIIIHandler")]
[System.Obsolete("deprecated")]
protected override void OnLayout(bool changed, int l, int t, int r, int b);
[<Android.Runtime.Register("onLayout", "(ZIIII)V", "GetOnLayout_ZIIIIHandler")>]
[<System.Obsolete("deprecated")>]
override this.OnLayout : bool * int * int * int * int -> unit

Parameters

changed
Boolean

boolean: This is a new size or position for this view

l
Int32

int: Left position, relative to parent

t
Int32

int: Top position, relative to parent

r
Int32

int: Right position, relative to parent

b
Int32

int: Bottom position, relative to parent

Attributes

Remarks

Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children.

Android reference for android.app.FragmentBreadCrumbs.onLayout.

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.

Applies to