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.java58 INode linearLayout = node.appendChild(FQCN_LINEAR_LAYOUT); in onCreate() local
59 linearLayout.setAttribute(ANDROID_URI, ATTR_ORIENTATION, in onCreate()
DLinearLayoutRule.java1049 private static float getWeightSum(INode linearLayout) {
1050 String weightSum = linearLayout.getStringAttr(ANDROID_URI,
1063 return getSumOfWeights(linearLayout);
1066 private static float getSumOfWeights(INode linearLayout) {
1068 for (INode child : linearLayout.getChildren()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DLinearLayoutRuleTest.java108 INode linearLayout = TestNode.create("android.widget.LinearLayout").id( in dragInto() local
122 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.java425 private float getWeightSum(Element linearLayout) { in getWeightSum() argument
427 for (Element child : DomUtilities.getChildren(linearLayout)) { in getWeightSum()