Searched defs:MATCH_PARENT (Results 1 - 4 of 4) 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.java133 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
137 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
476 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
509 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
577 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
587 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
590 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
593 mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT ?
594 ViewGroup.LayoutParams.MATCH_PARENT
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java149 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
153 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
492 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
525 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
592 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
602 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
605 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
608 mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT ?
609 ViewGroup.LayoutParams.MATCH_PARENT
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java5572 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5590 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5609 } else if (childDimension == LayoutParams.MATCH_PARENT) {
6334 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
6358 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
6366 * MATCH_PARENT means that the view wants to be as big as its parent,
6369 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
6380 * constants FILL_PARENT (replaced by MATCH_PARENT ,
6384 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 532 milliseconds