Home
last modified time | relevance | path

Searched refs:heightAttr (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/widget/
DRadioGroup.java341 int widthAttr, int heightAttr) { in setBaseAttributes() argument
349 if (a.hasValue(heightAttr)) { in setBaseAttributes()
350 height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
DTableRow.java501 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()
DTableLayout.java741 int widthAttr, int heightAttr) { in setBaseAttributes() argument
743 if (a.hasValue(heightAttr)) { in setBaseAttributes()
744 this.height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()
DGridLayout.java2216 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) {
2218 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
DRemoteViews.java5330 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/
DResourceHelper.java657 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/
DViewGroup.java8358 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { in setBaseAttributes() argument
8360 height = a.getLayoutDimension(heightAttr, "layout_height"); in setBaseAttributes()