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

/frameworks/base/core/java/android/view/
H A DViewGroup.java5143 * @param childDimension How big the child wants to be in the current
5147 public static int getChildMeasureSpec(int spec, int padding, int childDimension) { argument
5159 if (childDimension >= 0) {
5160 resultSize = childDimension;
5162 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5166 } else if (childDimension == LayoutParams.WRAP_CONTENT) {
5176 if (childDimension >= 0) {
5178 resultSize = childDimension;
5180 } else if (childDimension == LayoutParams.MATCH_PARENT) {
5185 } else if (childDimension
[all...]

Completed in 34 milliseconds