Searched defs:mMaxWidths (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/core/java/android/widget/
H A DTableLayout.java75 private int[] mMaxWidths; field in class:TableLayout
461 ((TableRow) child).setColumnsWidthConstraints(mMaxWidths);
512 if (mMaxWidths == null || mMaxWidths.length != newLength) {
513 mMaxWidths = new int[newLength];
515 System.arraycopy(widths, 0, mMaxWidths, 0, newLength);
518 int length = mMaxWidths.length;
523 final int[] oldMaxWidths = mMaxWidths;
524 mMaxWidths = new int[newLength];
525 System.arraycopy(oldMaxWidths, 0, mMaxWidths,
[all...]

Completed in 42 milliseconds