Searched refs:layoutView (Results 1 – 7 of 7) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | ResizeState.java | 84 public Object layoutView; field in ResizeState 94 ResizeState(BaseLayoutRule rule, INode layout, Object layoutView, INode node) { in ResizeState() argument 99 this.layoutView = layoutView; in ResizeState()
|
D | LinearLayoutRule.java | 784 private LinearResizeState(BaseLayoutRule rule, INode layout, Object layoutView, 786 super(rule, layout, layoutView, node); 866 protected ResizeState createResizeState(INode layout, Object layoutView, INode node) { 867 return new LinearResizeState(this, layout, layoutView, node);
|
D | BaseLayoutRule.java | 614 protected ResizeState createResizeState(INode layout, Object layoutView, INode node) { in createResizeState() argument 615 return new ResizeState(this, layout, layoutView, node); in createResizeState()
|
D | GridLayoutRule.java | 453 grid = GridModel.get(mRulesEngine, resizeState.layout, resizeState.layoutView); in getGrid()
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
D | Workspace.java | 140 private LayoutRenderer layoutView; field in Workspace 764 JScrollPane p = new JScrollPane(layoutView = new LayoutRenderer(scene, sceneView)); in buildExtrasPanel() 785 layoutView.setBackground(Color.WHITE); in buildLayoutViewControlButtons() 786 layoutView.setForeground(Color.BLACK); in buildLayoutViewControlButtons() 798 layoutView.setBackground(Color.BLACK); in buildLayoutViewControlButtons() 799 layoutView.setForeground(Color.WHITE); in buildLayoutViewControlButtons() 811 layoutView.setShowExtras(((JCheckBox) e.getSource()).isSelected()); in buildLayoutViewControlButtons() 821 layoutView.repaint(); in showCaptureWindow() 1388 layoutView.repaint(); in focusChanged()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | GridLayoutConverter.java | 138 CanvasViewInfo layoutView = findViewForElement(mRootView, mLayout); in convertToGridLayout() local 139 if (layoutView == null || layoutView.getChildren().size() == 0) { in convertToGridLayout() 145 GridModel gridModel = new GridModel(layoutView, mLayout, mFlatten); in convertToGridLayout()
|
D | RelativeLayoutConversionHelper.java | 128 CanvasViewInfo layoutView = findViewForElement(mRootView, mLayout); in convertToRelative() local 129 if (layoutView == null || layoutView.getChildren().size() == 0) { in convertToRelative() 135 List<View> views = analyzeLayout(layoutView); in convertToRelative() 150 private List<View> analyzeLayout(CanvasViewInfo layoutView) { in analyzeLayout() argument 151 EdgeList edgeList = new EdgeList(layoutView); in analyzeLayout()
|