Searched refs:rowHeight (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java69 int rowHeight = 0;
106 rowHeight = Math.max(rowHeight, child.getMeasuredHeight() + childParams.topMargin
111 height += rowHeight;
134 int rowHeight = 0;
160 rowHeight = Math.max(rowHeight, child.getMeasuredHeight()
165 cellTop += rowHeight;
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java154 int rowHeight = getRowHeight(i);
157 mTempRect.set(rectLeft, rectTop, rectRight, rectTop + rowHeight);
171 rectRight - 2, rectTop + rowHeight - 2);
181 rectTop += rowHeight;
197 final int rowHeight = getRowHeight(row);
198 final int top = mPaddingTop + row * rowHeight;
202 top + rowHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFreeformWorkspaceLayoutAlgorithm.java122 float rowHeight = rowScale * workspaceHeight;
125 float width = rowHeight * normalizedTaskWidths[i];
128 rowTop += rowHeight;
131 RectF rect = new RectF(rowLeft, rowTop, rowLeft + width, rowTop + rowHeight);
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java525 final int rowHeight = mDayHeight;
529 final int rowCenter = headerHeight + rowHeight / 2;
532 int row = Math.round(centerY / (float) rowHeight);
635 final int rowHeight = mDayOfWeekHeight;
640 final int rowCenter = headerHeight + rowHeight / 2;
662 final int rowHeight = mDayHeight;
667 int rowCenter = headerHeight + rowHeight / 2;
720 rowCenter += rowHeight;
998 final int rowHeight = mDayHeight;
1000 final int top = getPaddingTop() + headerHeight + row * rowHeight;
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DListRowPresenter.java349 * @param rowHeight Row height in pixels, or WRAP_CONTENT, or 0
352 public void setRowHeight(int rowHeight) { argument
353 mRowHeight = rowHeight;
368 * @param rowHeight The row height in to use when the row is expanded,
371 public void setExpandedRowHeight(int rowHeight) { argument
372 mExpandedRowHeight = rowHeight;
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridWidgetTest.java1435 final int rowHeight = (height - topPadding - bottomPadding) / 4 - spacing;
1445 horizontalGridView.setRowHeight(rowHeight);
1478 final int rowHeight = (height - topPadding - bottomPadding) / 4 - spacing;
1488 horizontalGridView.setRowHeight(rowHeight);
1503 assertEquals(height, view.getTop() + rowHeight + bottomPadding);

Completed in 280 milliseconds