HomeSort by relevance Sort by last modified time
    Searched defs:mRowHeight (Results 1 - 5 of 5) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 25 private int mRowHeight;
39 return mRowHeight;
43 this.mRowHeight = rowHeight;
75 lp.height = mRowHeight;
BaseStatusBar.java 132 protected int mRowHeight;
699 entry.row.setRowHeight(mRowHeight);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardRow.java 45 private final int mRowHeight;
101 mRowHeight = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
115 return mRowHeight;
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 57 private int mRowHeight;
133 mRowHeight = a.getDimensionPixelSize(com.android.internal.R.styleable.IconMenuView_rowHeight, 64);
414 final int desiredHeight = (mRowHeight + mHorizontalDividerHeight) *
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 151 protected int mRowHeight = DEFAULT_HEIGHT;
211 mRowHeight = (res.getDimensionPixelOffset(R.dimen.date_picker_view_animator_height)
331 mRowHeight = params.get(VIEW_PARAMS_HEIGHT);
332 if (mRowHeight < MIN_HEIGHT) {
333 mRowHeight = MIN_HEIGHT;
395 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mRowHeight * mNumRows
443 int y = (((mRowHeight + MINI_DAY_NUMBER_TEXT_SIZE) / 2) - DAY_SEPARATOR_WIDTH)
463 y += mRowHeight;
487 int row = (int) (y - MONTH_HEADER_SIZE) / mRowHeight;
630 final int cellHeight = mRowHeight;
    [all...]

Completed in 150 milliseconds