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.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/android/support/v7/widget/
H A DListPopupWindow.java174 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
178 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
532 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
565 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
568 * {@link #MATCH_PARENT}, or {@link #WRAP_CONTENT}.
574 && ViewGroup.LayoutParams.MATCH_PARENT != height) {
576 "Invalid height. Must be a positive value, MATCH_PARENT, or WRAP_CONTENT.");
657 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
668 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java6617 } else if (childDimension == LayoutParams.MATCH_PARENT) {
6635 } else if (childDimension == LayoutParams.MATCH_PARENT) {
6654 } else if (childDimension == LayoutParams.MATCH_PARENT) {
7394 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
7418 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
7426 * MATCH_PARENT means that the view wants to be as big as its parent,
7429 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
7440 * constants FILL_PARENT (replaced by MATCH_PARENT
7444 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 1187 milliseconds