Home | History | Annotate | Download | only in widget

Lines Matching refs:widthMeasureSpec

433     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
435 measureVertical(widthMeasureSpec, heightMeasureSpec);
452 int widthMeasureSpec, int totalWidth,
461 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
468 widthMeasureSpec, int heightMeasureSpec) {
469 findLargestCells(widthMeasureSpec);
470 shrinkAndStretchColumns(widthMeasureSpec);
472 super.measureVertical(widthMeasureSpec, heightMeasureSpec);
479 * @param widthMeasureSpec the measure constraint imposed by our parent
481 private void findLargestCells(int widthMeasureSpec) {
504 final int[] widths = row.getColumnsWidths(widthMeasureSpec);
543 * width allocated by widthMeasureSpec. When the total width is less
547 * @param widthMeasureSpec the width measure specification as indicated
550 private void shrinkAndStretchColumns(int widthMeasureSpec) {
563 int size = MeasureSpec.getSize(widthMeasureSpec) - mPaddingLeft - mPaddingRight;