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


Java MeasureSpec.UNSPECIFIED屬性代碼示例

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


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

示例1: onMeasure

/**
 * 
 */
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    
    int height = MeasureSpec.getSize(heightMeasureSpec);
    int width = MeasureSpec.getSize(widthMeasureSpec);

    int heightMode = MeasureSpec.getMode(heightMeasureSpec);

    final View child = getChildAt(0);
    if (child == null) {
        setMeasuredDimension(0, width);
        return;
    }

    if (child.isLayoutRequested()) {
        // Always let child be as tall as it wants.
        measureChild(child, widthMeasureSpec,
                MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
    }

    if (heightMode == MeasureSpec.UNSPECIFIED) {
        ViewGroup.LayoutParams lp = getLayoutParams();

        if (lp.height > 0) {
            height = lp.height;
        } else {
            height = child.getMeasuredHeight();
        }
    }

    setMeasuredDimension(width, height);
}
 
開發者ID:ultrasonic,項目名稱:ultrasonic,代碼行數:35,代碼來源:DragSortItemView.java


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