Home | History | Annotate | Download | only in widget

Lines Matching defs:COLUMN

61  * <h4>Row and Column Specs</h4>
75 * If a child does not specify the row and column indices of the cell it
106 * its row and column groups (which are typically set by setting the
112 * Multiple components in the same row or column group are
115 * within it are flexible. Row and column groups that sit either side of a common boundary
119 * To make a column stretch, make sure all of the components inside it define a
120 * gravity. To prevent a column from stretching, ensure that one of the components
121 * in the column does not define a gravity.
136 * For complete control over excess space distribution in a row or column;
301 * To control the 'direction' in which default row/column indices are generated
357 * RowCount is used only to generate default row/column indices when
390 * ColumnCount is used only to generate default column/column indices when
524 * Returns whether or not column boundaries are ordered by their grid indices.
526 * @return {@code true} if column boundaries must appear in the order of their indices,
538 * When this property is {@code true}, GridLayout is forced to place the column boundaries
541 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
547 * of column boundaries.
777 String groupName = horizontal ? "column" : "row";
1230 handleInvalidParams((horizontal ? "column" : "row") +
1742 * GridLayout supports both row and column spanning and arbitrary forms of alignment within
1749 * The row and column specs contain the leading and trailing indices along each axis
1752 * The alignment properties of the row and column specs together specify
1797 * <li>{@link #columnSpec}<code>.column</code> = {@link #UNDEFINED} </li>
1833 private static final int COLUMN = R.styleable.GridLayout_Layout_layout_column;
1974 int column = a.getInt(COLUMN, DEFAULT_COLUMN);
1976 this.columnSpec = spec(column, colSpan, getAlignment(gravity, true));
2335 * For column groups, this specifies the horizontal alignment.