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

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeConstants.java49 public final static String MATCH_PARENT = "match_parent"; field in class:BridgeConstants
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java139 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
143 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
493 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
526 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
529 * {@link #MATCH_PARENT}, or {@link #WRAP_CONTENT}.
535 && ViewGroup.LayoutParams.MATCH_PARENT != height) {
542 "Invalid height. Must be a positive value, MATCH_PARENT, or WRAP_CONTENT.");
625 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
636 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DListPopupWindow.java175 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
179 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
533 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
566 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
569 * {@link #MATCH_PARENT}, or {@link #WRAP_CONTENT}.
575 && ViewGroup.LayoutParams.MATCH_PARENT != height) {
577 "Invalid height. Must be a positive value, MATCH_PARENT, or WRAP_CONTENT.");
658 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
669 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java6786 } else if (childDimension == LayoutParams.MATCH_PARENT) {
6804 } else if (childDimension == LayoutParams.MATCH_PARENT) {
6823 } else if (childDimension == LayoutParams.MATCH_PARENT) {
7619 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
7643 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
7651 * MATCH_PARENT means that the view wants to be as big as its parent,
7654 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
7665 * constants FILL_PARENT (replaced by MATCH_PARENT
7669 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 121 milliseconds