Android.Widget.GridLayout: Method Members

The methods of Android.Widget.GridLayout are listed below. For a list of all members, see the GridLayout Members list.

See Also: Inherited members from Android.Views.ViewGroup

Public Methods

static
InvokeSpec(int) : GridLayout.Spec
Return a Spec, spec, where:
  • spec.span = [start, start + 1]
static
InvokeSpec(int, GridLayout.Alignment) : GridLayout.Spec
Return a Spec, spec, where:
  • spec.span = [start, start + 1]
  • spec.alignment = alignment
static
InvokeSpec(int, int) : GridLayout.Spec
Return a Spec, spec, where:
  • spec.span = [start, start + size]
static
InvokeSpec(int, float) : GridLayout.Spec
Equivalent to: spec(start, 1, weight).
static
InvokeSpec(int, GridLayout.Alignment, float) : GridLayout.Spec
Equivalent to: spec(start, 1, alignment, weight).
static
InvokeSpec(int, int, GridLayout.Alignment) : GridLayout.Spec
Equivalent to: spec(start, size, alignment, 0f).
static
InvokeSpec(int, int, float) : GridLayout.Spec
Equivalent to: spec(start, 1, default_alignment, weight) - where default_alignment is specified in NoType:android/widget/GridLayout$LayoutParams;Href=../../../reference/android/widget/GridLayout.LayoutParams.html.
static
InvokeSpec(int, int, GridLayout.Alignment, float) : GridLayout.Spec
Return a Spec, spec, where:
  • spec.span = [start, start + size]
  • spec.alignment = alignment
  • spec.weight = weight

Protected Methods

override
OnLayout(bool, int, int, int, int)
Called from layout when this view should assign a size and position to each of its children.