Home | History | Annotate | Download | only in layout

Lines Matching refs:currentHeight

142         String currentHeight = selectedNode.getStringAttr(ANDROID_URI, ATTR_LAYOUT_HEIGHT);
144 if (canMatchParent && VALUE_FILL_PARENT.equals(currentHeight)) {
145 currentHeight = VALUE_MATCH_PARENT;
146 } else if (!canMatchParent && VALUE_MATCH_PARENT.equals(currentHeight)) {
147 currentHeight = VALUE_FILL_PARENT;
148 } else if (!VALUE_WRAP_CONTENT.equals(currentHeight)
149 && !fillParent.equals(currentHeight)) {
150 height = currentHeight;
406 currentHeight,