Searched refs:heightAttr (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RadioGroup.java | 341 int widthAttr, int heightAttr) { in setBaseAttributes() argument 349 if (a.hasValue(heightAttr)) { in setBaseAttributes() 350 height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
|
D | TableRow.java | 501 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { in setBaseAttributes() argument 510 if (a.hasValue(heightAttr)) { in setBaseAttributes() 511 height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
|
D | TableLayout.java | 741 int widthAttr, int heightAttr) { in setBaseAttributes() argument 743 if (a.hasValue(heightAttr)) { in setBaseAttributes() 744 this.height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
|
D | GridLayout.java | 2216 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { 2218 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
|
D | RemoteViews.java | 5330 public void setViewLayoutHeightAttr(@IdRes int viewId, @AttrRes int heightAttr) { 5331 addAction(new LayoutParamAction(viewId, LayoutParamAction.LAYOUT_HEIGHT, heightAttr,
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | ResourceHelper.java | 657 String heightAttr = attrs.getValue("height"); in applyStyles() local 658 if (heightAttr != null) { in applyStyles() 659 int height = Integer.parseInt(heightAttr); in applyStyles()
|
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 8358 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { in setBaseAttributes() argument 8360 height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
|