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

/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java725 * @param childSize The child's desired size (the width or height field of
735 int childSize, int startMargin, int endMargin, int startPadding,
749 } else if (childSize >= 0) {
751 childSpecSize = childSize;
783 if (childSize >= 0) {
789 childSpecSize = Math.min(maxAvailable, childSize);
792 childSpecSize = childSize;
794 } else if (childSize == LayoutParams.MATCH_PARENT) {
799 } else if (childSize == LayoutParams.WRAP_CONTENT) {
734 getChildMeasureSpec(int childStart, int childEnd, int childSize, int startMargin, int endMargin, int startPadding, int endPadding, int mySize) argument

Completed in 225 milliseconds