HomeSort by relevance Sort by last modified time
    Searched refs:widthGap (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) {
297 mOriginalWidthGap = mWidthGap = widthGap;
299 mChildren.setGap(widthGap, heightGap);
372 // TODO: we need to take widthGap into effect
473 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
481 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
487 x = hStartPadding + myCellX * (cellWidth + widthGap) + leftMargin;
490 x = myCellX * (cellWidth + widthGap) + leftMargin;
PagedViewCellLayoutChildren.java 55 public void setGap(int widthGap, int heightGap) {
56 mWidthGap = widthGap;
ShortcutAndWidgetContainer.java 51 public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap ) {
54 mWidthGap = widthGap;
AppWidgetResizeFrame.java 331 int widthGap = landMetrics.right;
333 int landWidth = (int) ((spanX * cellWidth + (spanX - 1) * widthGap) / density);
339 widthGap = portMetrics.right;
341 int portWidth = (int) ((spanX * cellWidth + (spanX - 1) * widthGap) / density);
CellLayout.java     [all...]
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 203 int widthGap = resources.getDimensionPixelSize(R.dimen.workspace_width_gap);
215 width = spanX * previewCellSize + ((spanX - 1) * widthGap);

Completed in 393 milliseconds