Home | History | Annotate | Download | only in widget

Lines Matching defs:columnWidths

290         final int[] columnWidths = mColumnWidths;
312 columnWidths[i] = width;
314 columnWidths[i] = 0;
317 columnWidths[i] = 0;
321 return columnWidths;
326 * this row sets a fixed width, as defined by <code>columnWidths</code>,
329 * @param columnWidths the fixed width of each column that this row must
331 * @throws IllegalArgumentException when columnWidths' length is smaller
335 void setColumnsWidthConstraints(int[] columnWidths) {
336 if (columnWidths == null || columnWidths.length < getVirtualChildCount()) {
338 "columnWidths should be >= getVirtualChildCount()");
341 mConstrainedColumnWidths = columnWidths;