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.java45 public final static String MATCH_PARENT = "match_parent"; field in class:BridgeConstants
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java114 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
118 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
432 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
465 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
533 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
543 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
546 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
549 mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT ?
550 ViewGroup.LayoutParams.MATCH_PARENT
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java4735 } else if (childDimension == LayoutParams.MATCH_PARENT) {
4753 } else if (childDimension == LayoutParams.MATCH_PARENT) {
4772 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5180 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
5204 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
5212 * MATCH_PARENT means that the view wants to be as big as its parent,
5215 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
5226 * constants FILL_PARENT (replaced by MATCH_PARENT ,
5230 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 96 milliseconds