重写ViewGroup onMeasure,子match_parent不起作用

时间:2015-11-12 05:56:40

标签: android viewgroup onmeasure

我有一个使用自定义onMeasure方法的自定义Relativelayout。代码如下。

@Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int height = (int) (getMeasuredWidth() * ratio);
        measureChildren(widthMeasureSpec, MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY));
        setMeasuredDimension(getMeasuredWidth(), height);
    }

上述代码的目的是设置height=width*ratio

这样做之后。 layout_heightmatch_parent的子视图不会填充父级的高度。它的作用类似于wrap_content

    <com.baidu.mall.ui.view.RatioRelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:background="@color/orange"
        app:riv_ratio=".615384615">

        <ImageView
            android:id="@+id/selected_item_grid_item0_image_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@color/red"
            android:scaleType="centerCrop" />
    </com.baidu.mall.ui.view.RatioRelativeLayout>

我调试子视图的measuredHeightheight。我发现他们不平等。这很奇怪。

我想知道我的代码有什么问题。我该如何解决它?

0 个答案:

没有答案