Home | History | Annotate | Download | only in util

Lines Matching refs:CellLayout

24 import com.android.launcher3.CellLayout;
157 * Returns a matrix of size same as the {@link CellLayout} dimension that is initialized with the
161 public static int[][] createSparseMatrix(CellLayout layout) {
171 int cx = ((CellLayout.LayoutParams) parent.getChildAt(i).getLayoutParams()).cellX;
172 int cy = ((CellLayout.LayoutParams) parent.getChildAt(i).getLayoutParams()).cellY;
187 public static int[][] createSparseMatrix(CellLayout iconLayout, CellLayout hotseatLayout,
205 int cx = ((CellLayout.LayoutParams) iconParent.getChildAt(i).getLayoutParams()).cellX;
206 int cy = ((CellLayout.LayoutParams) iconParent.getChildAt(i).getLayoutParams()).cellY;
217 int cx = ((CellLayout.LayoutParams)
225 int cy = ((CellLayout.LayoutParams)
251 public static int[][] createSparseMatrix(CellLayout iconLayout, int pivotX, int pivotY) {
259 int cx = ((CellLayout.LayoutParams) iconParent.getChildAt(i).getLayoutParams()).cellX;
260 int cy = ((CellLayout.LayoutParams) iconParent.getChildAt(i).getLayoutParams()).cellY;
492 final int newRow = ((CellLayout.LayoutParams) oldView.getLayoutParams()).cellY;
495 ? 0 : (((CellLayout) nextPage.getParent()).getCountX() - 1);