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.java131 * Alias for {@link ViewGroup.LayoutParams#MATCH_PARENT}.
135 public static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT; field in class:ListPopupWindow
462 * Sets the width of the popup window in pixels. Can also be {@link #MATCH_PARENT}
495 * Sets the height of the popup window in pixels. Can also be {@link #MATCH_PARENT}.
563 if (mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT) {
573 if (mDropDownHeight == ViewGroup.LayoutParams.MATCH_PARENT) {
576 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
579 mDropDownWidth == ViewGroup.LayoutParams.MATCH_PARENT ?
580 ViewGroup.LayoutParams.MATCH_PARENT
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java5162 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5180 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5199 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5810 * <li>FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which
5834 * starting in API Level 8 and replaced by {@link #MATCH_PARENT}.
5842 * MATCH_PARENT means that the view wants to be as big as its parent,
5845 public static final int MATCH_PARENT = -1; field in class:ViewGroup.LayoutParams
5856 * constants FILL_PARENT (replaced by MATCH_PARENT ,
5860 @ViewDebug.IntToString(from = MATCH_PARENT, to = "MATCH_PARENT"),
[all...]

Completed in 295 milliseconds