Searched refs:margins (Results 1 – 4 of 4) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
D | GuidelineHandler.java | 320 Margins margins = node.getMargins(); in addBounds() local 322 if (margins.top != 0) { in addBounds() 324 mHorizontalEdges.add(new Segment(b.y - margins.top, b.x, b.x2(), node, id, in addBounds() 329 if (margins.bottom != 0) { in addBounds() 332 mHorizontalEdges.add(new Segment(b.y2() + margins.bottom, b.x, b.x2(), node, in addBounds() 340 if (margins.left != 0) { in addBounds() 342 mVerticalEdges.add(new Segment(b.x - margins.left, b.y, b.y2(), node, id, LEFT, in addBounds() 348 if (margins.right != 0) { in addBounds() 351 mVerticalEdges.add(new Segment(b.x2() + margins.right, b.y, b.y2(), node, id, in addBounds()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | BaseLayoutRule.java | 132 String[] margins = mRulesEngine.displayMarginInput(all, left, in createMarginAction() 134 if (margins != null) { in createMarginAction() 135 assert margins.length == 5; in createMarginAction() 137 child.setAttribute(uri, ATTR_LAYOUT_MARGIN, margins[0]); in createMarginAction() 138 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_LEFT, margins[1]); in createMarginAction() 139 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_RIGHT, margins[2]); in createMarginAction() 140 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_TOP, margins[3]); in createMarginAction() 141 child.setAttribute(uri, ATTR_LAYOUT_MARGIN_BOTTOM, margins[4]); in createMarginAction()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
D | NodeProxy.java | 101 Margins margins = view.getMargins(); in getMargins() local 102 if (margins != null) { in getMargins() 103 return margins; in getMargins()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | completionvalues1-expected-completion32.txt | 5 …s alignment to take place between the outer boundary of a view, as defined by its margins. [enum] 309 android:useDefaultMargins : When set to true, tells GridLayout to use default margins when none ar…
|