Class GridLayout.LayoutParams
- Enclosing class:
GridLayout
GridLayout supports both row and column spanning and arbitrary forms of alignment within
each cell group. The fundamental parameters associated with each cell group are
gathered into their vertical and horizontal components and stored
in the rowSpec and columnSpec layout parameters.
Specs are immutable structures
and may be shared between the layout parameters of different children.
The row and column specs contain the leading and trailing indices along each axis and together specify the four grid indices that delimit the cells of this cell group.
The alignment properties of the row and column specs together specify
both aspects of alignment within the cell group. It is also possible to specify a child's
alignment within its cell group by using the setGravity(int)
method.
The weight property is also included in Spec and specifies the proportion of any excess space that is due to the associated view.
WRAP_CONTENT and MATCH_PARENT
Because the default values of the ViewGroup.LayoutParams.width and ViewGroup.LayoutParams.height
properties are both ViewGroup.LayoutParams.WRAP_CONTENT, this value never needs to be explicitly
declared in the layout parameters of GridLayout's children. In addition,
GridLayout does not distinguish the special size value ViewGroup.LayoutParams.MATCH_PARENT from
ViewGroup.LayoutParams.WRAP_CONTENT. A component's ability to expand to the size of the parent is
instead controlled by the principle of flexibility,
as discussed in GridLayout.
Summary
You should not need to use either of the special size values:
WRAP_CONTENT or MATCH_PARENT when configuring the children of
a GridLayout.
Default values
ViewGroup.LayoutParams.width=ViewGroup.LayoutParams.WRAP_CONTENTViewGroup.LayoutParams.height=ViewGroup.LayoutParams.WRAP_CONTENTViewGroup.MarginLayoutParams.topMargin= 0 whenuseDefaultMarginsisfalse; otherwiseGridLayout.UNDEFINED, to indicate that a default value should be computed on demand.ViewGroup.MarginLayoutParams.leftMargin= 0 whenuseDefaultMarginsisfalse; otherwiseGridLayout.UNDEFINED, to indicate that a default value should be computed on demand.ViewGroup.MarginLayoutParams.bottomMargin= 0 whenuseDefaultMarginsisfalse; otherwiseGridLayout.UNDEFINED, to indicate that a default value should be computed on demand.ViewGroup.MarginLayoutParams.rightMargin= 0 whenuseDefaultMarginsisfalse; otherwiseGridLayout.UNDEFINED, to indicate that a default value should be computed on demand.rowSpec.row=GridLayout.UNDEFINEDrowSpec.rowSpan= 1rowSpec.alignment=GridLayout.BASELINErowSpec.weight= 0columnSpec.column=GridLayout.UNDEFINEDcolumnSpec.columnSpan= 1columnSpec.alignment=GridLayout.STARTcolumnSpec.weight= 0
See GridLayout for a more complete description of the conventions
used by GridLayout in the interpretation of the properties of this class.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe spec that defines the horizontal characteristics of the cell group described by these layout parameters.The spec that defines the vertical characteristics of the cell group described by these layout parameters.Fields inherited from class icyllis.modernui.view.ViewGroup.MarginLayoutParams
bottomMargin, DEFAULT_MARGIN_RELATIVE, leftMargin, rightMargin, topMarginFields inherited from class icyllis.modernui.view.ViewGroup.LayoutParams
height, MATCH_PARENT, width, WRAP_CONTENT -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new LayoutParams with default values as defined inGridLayout.LayoutParams.LayoutParams(ViewGroup.LayoutParams params) LayoutParams(GridLayout.LayoutParams source) Copy constructor.LayoutParams(GridLayout.Spec rowSpec, GridLayout.Spec columnSpec) Constructs a new LayoutParams instance for thisrowSpecandcolumnSpec. -
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()voidsetGravity(int gravity) Describes how the child views are positioned.Methods inherited from class icyllis.modernui.view.ViewGroup.MarginLayoutParams
copyMarginsFrom, getLayoutDirection, getMarginEnd, getMarginStart, isLayoutRtl, isMarginRelative, onDebugDraw, resolveLayoutDirection, setLayoutDirection, setMarginEnd, setMargins, setMarginsRelative, setMarginStart
-
Field Details
-
rowSpec
The spec that defines the vertical characteristics of the cell group described by these layout parameters. If an assignment is made to this field after a measurement or layout operation has already taken place, a call toView.setLayoutParams(ViewGroup.LayoutParams)must be made to notify GridLayout of the change. GridLayout is normally able to detect when code fails to observe this rule, issue a warning and take steps to compensate for the omission. This facility is implemented on a best effort basis and should not be relied upon in production code - so it is best to include the above calls to remove the warnings as soon as it is practical. -
columnSpec
The spec that defines the horizontal characteristics of the cell group described by these layout parameters. If an assignment is made to this field after a measurement or layout operation has already taken place, a call toView.setLayoutParams(ViewGroup.LayoutParams)must be made to notify GridLayout of the change. GridLayout is normally able to detect when code fails to observe this rule, issue a warning and take steps to compensate for the omission. This facility is implemented on a best effort basis and should not be relied upon in production code - so it is best to include the above calls to remove the warnings as soon as it is practical.
-
-
Constructor Details
-
LayoutParams
Constructs a new LayoutParams instance for thisrowSpecandcolumnSpec. All other fields are initialized with default values as defined inGridLayout.LayoutParams.- Parameters:
rowSpec- the rowSpeccolumnSpec- the columnSpec
-
LayoutParams
public LayoutParams()Constructs a new LayoutParams with default values as defined inGridLayout.LayoutParams. -
LayoutParams
-
LayoutParams
-
LayoutParams
Copy constructor. Clones the width, height, margin values, row spec, and column spec of the source.- Parameters:
source- The layout params to copy from.
-
-
Method Details