Home | History | Annotate | Download | only in widget

Lines Matching defs:columnWidths

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