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

  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
CardPresenter.java 43 private int mRowHeight = 0;
58 if (mRowHeight == 0) {
65 mRowHeight = v.getMeasuredHeight();
74 return mRowHeight;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardRow.java 44 private final int mRowHeight;
101 mRowHeight = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
115 return mRowHeight;
  /packages/apps/TV/src/com/android/tv/guide/
ProgramGrid.java 85 private final int mRowHeight;
127 mRowHeight = res.getDimensionPixelSize(R.dimen.program_guide_table_item_row_height);
195 int minY = (mSelectionRow - 1) * mRowHeight;
197 int maxY = (mSelectionRow + 1) * mRowHeight + mDetailHeight;
ProgramGuide.java 104 private final int mRowHeight;
193 mRowHeight = res.getDimensionPixelSize(R.dimen.program_guide_table_item_row_height);
288 mGrid.setWindowAlignmentOffset(mSelectionRow * mRowHeight);
382 int selectionRowOffset = mSelectionRow * mRowHeight;
387 mGrid.setWindowAlignmentOffset(selectionRowOffset + mRowHeight + mDetailHeight);
632 + mDetailHeight + mRowHeight * mGrid.getAdapter().getItemCount() + topPadding
    [all...]
  /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/
MonthView.java 154 protected int mRowHeight = DEFAULT_HEIGHT;
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...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ListRowPresenter.java 285 private int mRowHeight;
353 mRowHeight = rowHeight;
360 return mRowHeight;
379 return mExpandedRowHeight != 0 ? mExpandedRowHeight : mRowHeight;
571 if (mRowHeight != 0) {
572 rowView.getGridView().setRowHeight(mRowHeight);
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 314 milliseconds