當前位置: 首頁>>代碼示例>>Java>>正文


Java View.getDefaultSize方法代碼示例

本文整理匯總了Java中android.view.View.getDefaultSize方法的典型用法代碼示例。如果您正苦於以下問題:Java View.getDefaultSize方法的具體用法?Java View.getDefaultSize怎麽用?Java View.getDefaultSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.view.View的用法示例。


在下文中一共展示了View.getDefaultSize方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: measure

import android.view.View; //導入方法依賴的package包/類
public Point measure(int widthSpec, int heightSpec, int frameWidth, int frameHeight) {
  // Calculate max allowed layout size.
  final int maxWidth = View.getDefaultSize(Integer.MAX_VALUE, widthSpec);
  final int maxHeight = View.getDefaultSize(Integer.MAX_VALUE, heightSpec);
  if (frameWidth == 0 || frameHeight == 0 || maxWidth == 0 || maxHeight == 0) {
    return new Point(maxWidth, maxHeight);
  }
  // Calculate desired display size based on scaling type, video aspect ratio,
  // and maximum layout size.
  final float frameAspect = frameWidth / (float) frameHeight;
  final float displayAspect = maxWidth / (float) maxHeight;
  final ScalingType scalingType = (frameAspect > 1.0f) == (displayAspect > 1.0f)
      ? scalingTypeMatchOrientation
      : scalingTypeMismatchOrientation;
  final Point layoutSize = getDisplaySize(scalingType, frameAspect, maxWidth, maxHeight);

  // If the measure specification is forcing a specific size - yield.
  if (View.MeasureSpec.getMode(widthSpec) == View.MeasureSpec.EXACTLY) {
    layoutSize.x = maxWidth;
  }
  if (View.MeasureSpec.getMode(heightSpec) == View.MeasureSpec.EXACTLY) {
    layoutSize.y = maxHeight;
  }
  return layoutSize;
}
 
開發者ID:Piasy,項目名稱:AppRTC-Android,代碼行數:26,代碼來源:RendererCommon.java

示例2: onMeasure

import android.view.View; //導入方法依賴的package包/類
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int width = View.getDefaultSize(0, widthMeasureSpec);
    int height = View.getDefaultSize(0, heightMeasureSpec);
    setMeasuredDimension(width, height);

    int childCount = getChildCount();
    for (int i = 0; i < childCount; i++) {
        View childAt = getChildAt(i);
        int spec_w = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
        int spec_h = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
        childAt.measure(spec_w, spec_h);
    }

}
 
開發者ID:pop1234o,項目名稱:BestPracticeApp,代碼行數:16,代碼來源:SimpleViewPager.java


注:本文中的android.view.View.getDefaultSize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。