我有一个使用自定义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_height
值match_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>
我调试子视图的measuredHeight
和height
。我发现他们不平等。这很奇怪。
我想知道我的代码有什么问题。我该如何解决它?