HomeSort by relevance Sort by last modified time
    Searched refs:mMaxRows (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PagedTileLayout.java 263 private int mMaxRows = 3;
274 boolean changed = rows != mMaxRows;
276 mMaxRows = rows;
292 mMaxRows = maxRows;
296 return mRecords.size() >= mColumns * mMaxRows;
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 59 private int mMaxRows;
134 mMaxRows = a.getInt(com.android.internal.R.styleable.IconMenuView_maxRows, 2);
161 mLayout = new int[mMaxRows];
190 Math.min((int) Math.ceil(numItems / (float) mMaxItemsPerRow), mMaxRows);
194 * all of the items' titles. Worst case, we use mMaxRows.
196 for (; curNumRows <= mMaxRows; curNumRows++) {

Completed in 61 milliseconds