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

/frameworks/base/core/java/android/widget/
H A DRadioGroup.java293 * @param heightAttr the height attribute to fetch
297 int widthAttr, int heightAttr) {
305 if (a.hasValue(heightAttr)) {
306 height = a.getLayoutDimension(heightAttr, "layout_height");
296 setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) argument
H A DTableLayout.java718 * @param heightAttr the height attribute to fetch
722 int widthAttr, int heightAttr) {
724 if (a.hasValue(heightAttr)) {
725 this.height = a.getLayoutDimension(heightAttr, "layout_height");
721 setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) argument
H A DTableRow.java488 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { argument
497 if (a.hasValue(heightAttr)) {
498 height = a.getLayoutDimension(heightAttr, "layout_height");
/frameworks/base/core/java/android/view/
H A DViewGroup.java3589 * @param heightAttr the identifier of the height attribute
3591 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { argument
3593 height = a.getLayoutDimension(heightAttr, "layout_height");

Completed in 65 milliseconds