Searched defs:heightAttr (Results 1 - 6 of 6) sorted by last modified time

/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1933 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { argument
1935 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
/frameworks/base/core/java/android/view/
H A DViewGroup.java5611 * @param heightAttr the identifier of the height attribute
5613 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { argument
5615 height = a.getLayoutDimension(heightAttr, "layout_height");
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2000 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { argument
2002 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
H A DRadioGroup.java309 * @param heightAttr the height attribute to fetch
313 int widthAttr, int heightAttr) {
321 if (a.hasValue(heightAttr)) {
322 height = a.getLayoutDimension(heightAttr, "layout_height");
312 setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) argument
H A DTableLayout.java741 * @param heightAttr the height attribute to fetch
745 int widthAttr, int heightAttr) {
747 if (a.hasValue(heightAttr)) {
748 this.height = a.getLayoutDimension(heightAttr, "layout_height");
744 setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) argument
H A DTableRow.java504 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) { argument
513 if (a.hasValue(heightAttr)) {
514 height = a.getLayoutDimension(heightAttr, "layout_height");

Completed in 123 milliseconds