本文整理匯總了Java中android.view.View.resolveSize方法的典型用法代碼示例。如果您正苦於以下問題:Java View.resolveSize方法的具體用法?Java View.resolveSize怎麽用?Java View.resolveSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.view.View
的用法示例。
在下文中一共展示了View.resolveSize方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onMeasure
import android.view.View; //導入方法依賴的package包/類
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = View.resolveSize(getSuggestedMinimumWidth(), widthMeasureSpec);
int height = View.resolveSize(getSuggestedMinimumHeight(), heightMeasureSpec);
int childWidthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.UNSPECIFIED);
int childHeightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.UNSPECIFIED);
int count = this.getChildCount();
for (int i = 0; i < count; i++) {
getChildAt(i).measure(childWidthSpec, childHeightSpec);
}
height = mChildrenMeasure.measureByTotalWidth(width).getTotalHeight();
if (mChildrenMeasure.hasPreLayoutView() && getMeasuredHeight() > height) {
height = getMeasuredHeight();
}
this.setMeasuredDimension(width, height);
}
示例2: updateMeasureSpec
import android.view.View; //導入方法依賴的package包/類
/**
* Updates the given measure spec with respect to the aspect ratio.
*
* <p>Note: Measure spec is not changed if the aspect ratio is not greater than zero or if
* layoutParams is null.
*
* <p>Measure spec of the layout dimension (width or height) specified as "0dp" is updated
* to match the measure spec of the other dimension adjusted by the aspect ratio. Exactly one
* layout dimension should be specified as "0dp".
*
* <p>Padding is taken into account so that the aspect ratio refers to the content without
* padding: {@code aspectRatio == (viewWidth - widthPadding) / (viewHeight - heightPadding)}
*
* <p>Updated measure spec respects the parent's constraints. I.e. measure spec is not changed
* if the parent has specified mode {@code EXACTLY}, and it doesn't exceed measure size if parent
* has specified mode {@code AT_MOST}.
*
* @param spec in/out measure spec to be updated
* @param aspectRatio desired aspect ratio
* @param layoutParams view's layout params
* @param widthPadding view's left + right padding
* @param heightPadding view's top + bottom padding
*/
public static void updateMeasureSpec(
Spec spec,
float aspectRatio,
@Nullable ViewGroup.LayoutParams layoutParams,
int widthPadding,
int heightPadding) {
if (aspectRatio <= 0 || layoutParams == null) {
return;
}
if (shouldAdjust(layoutParams.height)) {
int widthSpecSize = View.MeasureSpec.getSize(spec.width);
int desiredHeight = (int) ((widthSpecSize - widthPadding) / aspectRatio + heightPadding);
int resolvedHeight = View.resolveSize(desiredHeight, spec.height);
spec.height = View.MeasureSpec.makeMeasureSpec(resolvedHeight, View.MeasureSpec.EXACTLY);
} else if (shouldAdjust(layoutParams.width)) {
int heightSpecSize = View.MeasureSpec.getSize(spec.height);
int desiredWidth = (int) ((heightSpecSize - heightPadding) * aspectRatio + widthPadding);
int resolvedWidth = View.resolveSize(desiredWidth, spec.width);
spec.width = View.MeasureSpec.makeMeasureSpec(resolvedWidth, View.MeasureSpec.EXACTLY);
}
}
示例3: resolveSizeAndState
import android.view.View; //導入方法依賴的package包/類
@Override
public int resolveSizeAndState(int size, int measureSpec, int state) {
return View.resolveSize(size, measureSpec);
}
示例4: updateMeasureSpec
import android.view.View; //導入方法依賴的package包/類
/**
* Updates the given measure spec with respect to the aspect ratio.
*
* <p>Note: Measure spec is not changed if the aspect ratio is not greater than zero or if
* layoutParams is null.
*
* <p>Measure spec of the layout dimension (width or height) specified as "0dp" is updated
* to match the measure spec of the other dimension adjusted by the aspect ratio. Exactly one
* layout dimension should be specified as "0dp".
*
* <p>Padding is taken into account so that the aspect ratio refers to the content without
* padding: {@code aspectRatio == (viewWidth - widthPadding) / (viewHeight - heightPadding)}
*
* <p>Updated measure spec respects the parent's constraints. I.e. measure spec is not changed
* if the parent has specified mode {@code EXACTLY}, and it doesn't exceed measure size if parent
* has specified mode {@code AT_MOST}.
*
* @param spec in/out measure spec to be updated
* @param aspectRatio desired aspect ratio
* @param layoutParams view's layout params
* @param widthPadding view's left + right padding
* @param heightPadding view's top + bottom padding
*/
public static void updateMeasureSpec(
Spec spec,
float aspectRatio,
@Nullable ViewGroup.LayoutParams layoutParams,
int widthPadding,
int heightPadding) {
if (aspectRatio <= 0 || layoutParams == null) {
return;
}
if (shouldAdjust(layoutParams.height)) {
int widthSpecSize = View.MeasureSpec.getSize(spec.width);
int desiredHeight = (int) ((widthSpecSize - widthPadding) / aspectRatio + heightPadding);
int resolvedHeight = View.resolveSize(desiredHeight, spec.height);
spec.height = View.MeasureSpec.makeMeasureSpec(resolvedHeight, View.MeasureSpec.EXACTLY);
} else if (shouldAdjust(layoutParams.width)) {
int heightSpecSize = View.MeasureSpec.getSize(spec.height);
int desiredWidth = (int) ((heightSpecSize - heightPadding) * aspectRatio + widthPadding);
int resolvedWidth = View.resolveSize(desiredWidth, spec.width);
spec.width = View.MeasureSpec.makeMeasureSpec(resolvedWidth, View.MeasureSpec.EXACTLY);
}
}
示例5: resolveSizeAndState
import android.view.View; //導入方法依賴的package包/類
public int resolveSizeAndState(int size, int measureSpec, int childMeasuredState) {
return View.resolveSize(size, measureSpec);
}