Home
last modified time | relevance | path

Searched refs:weight (Results 1 – 7 of 7) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DLinearLayoutRule.java183 String weight = in addLayoutActions()
185 if (weight == null || weight.length() == 0) { in addLayoutActions()
186 weight = "0.0"; //$NON-NLS-1$ in addLayoutActions()
188 weight = mRulesEngine.displayInput("Enter Weight Value:", weight, in addLayoutActions()
190 if (weight != null) { in addLayoutActions()
191 if (weight.isEmpty()) { in addLayoutActions()
192 weight = null; // remove attribute in addLayoutActions()
196 ATTR_LAYOUT_WEIGHT, weight); in addLayoutActions()
606 String weight = target.getStringAttr(ANDROID_URI, ATTR_LAYOUT_WEIGHT);
607 if (weight == null || weight.length() == 0) {
[all …]
/sdk/eclipse/sites/external/web/
Dsite.css5 .sub-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
6 .log-text {font-family: sans-serif; font-style: normal; font-weight: lighter; font-size: 8pt; color…
7 .big-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
/sdk/eclipse/sites/internal/web/
Dsite.css5 .sub-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
6 .log-text {font-family: sans-serif; font-style: normal; font-weight: lighter; font-size: 8pt; color…
7 .big-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color…
/sdk/templates/docs/
Dcssreset-min.css7weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;fo…
Ddefault.css101 font-weight: 600;
128 font-weight: 600;
138 font-weight: 100;
143 font-weight: 600;
155 font-weight: 300;
167 font-weight: 400;
222 font-weight: 600;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRelativeLayoutConversionHelper.java341 String weight = linearLayoutChild.getAttributeNS(ANDROID_URI, ATTR_LAYOUT_WEIGHT); in getWeight() local
342 if (weight != null && weight.length() > 0) { in getWeight()
344 return Float.parseFloat(weight); in getWeight()
346 AdtPlugin.log(nfe, "Invalid weight %1$s", weight); in getWeight()
418 float weight = getWeight(child); in analyzeLinearLayout() local
424 if (cumulativeWeight == 0 && weight > 0) { in analyzeLinearLayout()
440 cumulativeWeight += weight; in analyzeLinearLayout()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletionvalues1-expected-completion32.txt168 android:measureWithLargestChild : When set to true, all children with a weight will be considered …
316 android:weightSum : Defines the maximum weight sum. [float]