Searched defs:mRowHeight (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java57 private int mRowHeight; field in class:IconMenuView
133 mRowHeight = a.getDimensionPixelSize(com.android.internal.R.styleable.IconMenuView_rowHeight, 64);
414 final int desiredHeight = (mRowHeight + mHorizontalDividerHeight) *
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DListRowPresenter.java88 private int mRowHeight; field in class:ListRowPresenter
130 mRowHeight = rowHeight;
137 return mRowHeight;
156 return mExpandedRowHeight != 0 ? mExpandedRowHeight : mRowHeight;
369 if (mRowHeight != 0) {
370 rowView.getGridView().setRowHeight(mRowHeight);
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java100 private int mRowHeight = DEFAULT_HEIGHT; field in class:SimpleMonthView
176 mRowHeight = (res.getDimensionPixelOffset(R.dimen.datepicker_view_animator_height)
326 if (mRowHeight < MIN_HEIGHT) {
327 mRowHeight = MIN_HEIGHT;
417 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mRowHeight * mNumRows
462 int y = (((mRowHeight + mMiniDayNumberTextSize) / 2) - DAY_SEPARATOR_WIDTH)
484 y += mRowHeight;
507 int row = (int) (y - mMonthHeaderSize) / mRowHeight;
658 final int cellHeight = mRowHeight;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java154 protected int mRowHeight = DEFAULT_HEIGHT; field in class:MonthView
220 mRowHeight = (res.getDimensionPixelOffset(R.dimen.date_picker_view_animator_height)
348 mRowHeight = params.get(VIEW_PARAMS_HEIGHT);
349 if (mRowHeight < MIN_HEIGHT) {
350 mRowHeight = MIN_HEIGHT;
416 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mRowHeight * mNumRows
479 int y = (((mRowHeight + MINI_DAY_NUMBER_TEXT_SIZE) / 2) - DAY_SEPARATOR_WIDTH)
486 int yRelativeToDay = (mRowHeight + MINI_DAY_NUMBER_TEXT_SIZE) / 2 - DAY_SEPARATOR_WIDTH;
491 final int stopY = (int)(startY + mRowHeight);
498 y += mRowHeight;
[all...]

Completed in 124 milliseconds