Home | History | Annotate | Download | only in grid

Lines Matching refs:MARGIN_SIZE

26 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE
132 + MARGIN_SIZE + bounds.x;
133 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE
134 + MARGIN_SIZE + bounds.y;
355 if (x1 < bounds.x + MARGIN_SIZE + max) {
356 int matchedLine = bounds.x + MARGIN_SIZE;
361 0, createCell, MARGIN_SIZE));
363 } else if (x2 > bounds.x2() - MARGIN_SIZE - max) {
364 int matchedLine = bounds.x2() - MARGIN_SIZE;
370 MARGIN_SIZE));
416 if (y1 < bounds.y + MARGIN_SIZE + max) {
417 int matchedLine = bounds.y + MARGIN_SIZE;
422 0, createCell, MARGIN_SIZE));
424 } else if (y2 > bounds.y2() - MARGIN_SIZE - max) {
425 int matchedLine = bounds.y2() - MARGIN_SIZE;
431 // mGrid.actualRowCount - 1, createCell, MARGIN_SIZE));