Home | History | Annotate | Download | only in widget

Lines Matching defs:COLUMN

66  * <h4>Row and Column Specs</h4>
80 * If a child does not specify the row and column indices of the cell it
119 * Multiple components in the same row or column group are
122 * within it are flexible. Row and column groups that sit either side of a common boundary
126 * To make a column stretch, make sure all of the components inside it define a
127 * weight or a gravity. To prevent a column from stretching, ensure that one of the components
128 * in the column does not define a weight or a gravity.
143 * view was alone in a column, that column would itself collapse to zero width if and only if
323 * To control the 'direction' in which default row/column indices are generated
379 * RowCount is used only to generate default row/column indices when
412 * ColumnCount is used only to generate default column/column indices when
547 * Returns whether or not column boundaries are ordered by their grid indices.
549 * @return {@code true} if column boundaries must appear in the order of their indices,
561 * When this property is {@code true}, GridLayout is forced to place the column boundaries
564 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
570 * of column boundaries.
827 String groupName = horizontal ? "column" : "row";
1286 handleInvalidParams((horizontal ? "column" : "row") +
1893 * GridLayout supports both row and column spanning and arbitrary forms of alignment within
1900 * The row and column specs contain the leading and trailing indices along each axis
1903 * The alignment properties of the row and column specs together specify
1952 * <li>{@link #columnSpec}<code>.column</code> = {@link #UNDEFINED} </li>
1991 private static final int COLUMN = R.styleable.GridLayout_Layout_layout_column;
2082 * and column spec of the source.
2138 int column = a.getInt(COLUMN, DEFAULT_COLUMN);
2141 this.columnSpec = spec(column, colSpan, getAlignment(gravity, true), colWeight);
2500 * For column groups, this specifies the horizontal alignment.