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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 296 public void setGap(int widthGap, int heightGap) {
298 mOriginalHeightGap = mHeightGap = heightGap;
299 mChildren.setGap(widthGap, heightGap);
380 // TODO: we need to take heightGap into effect
473 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
483 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
488 y = vStartPadding + myCellY * (cellHeight + heightGap) + topMargin;
491 y = myCellY * (cellHeight + heightGap) + topMargin;
PagedViewCellLayoutChildren.java 55 public void setGap(int widthGap, int heightGap) {
57 mHeightGap = heightGap;
ShortcutAndWidgetContainer.java 51 public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap ) {
55 mHeightGap = heightGap;
AppWidgetResizeFrame.java 332 int heightGap = landMetrics.bottom;
334 int landHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
340 heightGap = portMetrics.bottom;
342 int portHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
CellLayout.java     [all...]
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 204 int heightGap = resources.getDimensionPixelSize(R.dimen.workspace_height_gap);
216 height = spanY * previewCellSize + ((spanY - 1) * heightGap);

Completed in 51 milliseconds