Searched defs:MATCH_PARENT (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeConstants.java48 public final static String MATCH_PARENT = "match_parent"; field in class:BridgeConstants
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java119 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
123 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
440 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
473 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
541 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
551 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
554 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
557 mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT ?
558 ViewGroup.LayoutParams.MATCH_PARENT
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java4864 } else if (childDimension == LayoutParams.MATCH_PARENT) {
4882 } else if (childDimension == LayoutParams.MATCH_PARENT) {
4901 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5493 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
5517 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
5525 * MATCH_PARENT means that the view wants to be as big as its parent,
5528 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
5539 * constants FILL_PARENT (replaced by MATCH_PARENT ,
5543 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 804 milliseconds