Searched refs:heightGap (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewCellLayout.java301 public void setGap(int widthGap, int heightGap) { argument
303 mOriginalHeightGap = mHeightGap = heightGap;
304 mChildren.setGap(widthGap, heightGap);
385 // TODO: we need to take heightGap into effect
478 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap, argument
488 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
493 y = vStartPadding + myCellY * (cellHeight + heightGap) + topMargin;
496 y = myCellY * (cellHeight + heightGap) + topMargin;
H A DCellLayoutChildren.java49 public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap ) {
53 mHeightGap = heightGap;
H A DPagedViewCellLayoutChildren.java55 public void setGap(int widthGap, int heightGap) { argument
57 mHeightGap = heightGap;
H A DCellLayout.java1442 final int heightGap = mHeightGap;
1448 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
1451 int y = vStartPadding + cellY * (cellHeight + heightGap);
1751 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap) { argument
1760 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
1763 y = myCellY * (cellHeight + heightGap) + topMargin;

Completed in 90 milliseconds