Home
last modified time | relevance | path

Searched refs:mMaxCountX (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DFolderPagedView.java71 private final int mMaxCountX; field in FolderPagedView
90 mMaxCountX = profile.numFolderColumns; in FolderPagedView()
93 mMaxItemsPerPage = mMaxCountX * mMaxCountY; in FolderPagedView()
120 mGridCountX = mMaxCountX; in setupContentDimensions()
132 … if ((mGridCountX <= mGridCountY || mGridCountY == mMaxCountY) && mGridCountX < mMaxCountX) { in setupContentDimensions()
/packages/apps/Launcher2/src/com/android/launcher2/
DFolder.java80 private int mMaxCountX; field in Folder
125 mMaxCountX = res.getInteger(R.integer.folder_max_count_x); in Folder()
128 if (mMaxCountX < 0 || mMaxCountY < 0 || mMaxNumItems < 0) { in Folder()
129 mMaxCountX = LauncherModel.getCellCountX(); in Folder()
131 mMaxNumItems = mMaxCountX * mMaxCountY; in Folder()
773 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) { in setupContentDimensions()