Home
last modified time | relevance | path

Searched refs:linearLayout (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DHorizontalScrollViewRule.java62 INode linearLayout = node.appendChild(FQCN_LINEAR_LAYOUT); in onCreate() local
63 linearLayout.setAttribute(ANDROID_URI, ATTR_ORIENTATION, in onCreate()
DLinearLayoutRule.java1067 private static float getWeightSum(INode linearLayout) {
1068 String weightSum = linearLayout.getStringAttr(ANDROID_URI,
1081 return getSumOfWeights(linearLayout);
1084 private static float getSumOfWeights(INode linearLayout) {
1086 for (INode child : linearLayout.getChildren()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DLinearLayoutRuleTest.java107 INode linearLayout = TestNode.create("android.widget.LinearLayout").id( in dragInto() local
121 return super.dragInto(new LinearLayoutRule(), linearLayout, dragBounds, dragPoint, null, in dragInto()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRelativeLayoutConversionHelper.java359 private float getWeightSum(Element linearLayout) { in getWeightSum() argument
361 for (Element child : DomUtilities.getChildren(linearLayout)) { in getWeightSum()