Searched defs:mMaxRows (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPagedTileLayout.java257 private int mMaxRows = 3; field in class:PagedTileLayout.TilePage
268 boolean changed = rows != mMaxRows;
270 mMaxRows = rows;
286 mMaxRows = maxRows;
290 return mRecords.size() >= mColumns * mMaxRows;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java59 private int mMaxRows; field in class:IconMenuView
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 325 milliseconds