android – 扩展FrameLayout,子视图将不再显示

前端之家收集整理的这篇文章主要介绍了android – 扩展FrameLayout,子视图将不再显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的FrameLayout代码
<FrameLayout
        android:layout_width="fill_parent" android:layout_height="wrap_content">
    <ImageView
            android:id="@+id/frameView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/image1"
            />
</FrameLayout>

ImageView很好.

现在我有一个从FrameLayout扩展的自定义布局,例如MyFrameLayout.

在MyFrameLayout中,我希望布局的高度始终是宽度的一半,所以我的代码是:

public class MyFrameLayout extends FrameLayout {

     // 3 constructors just call super

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

然后在xml中使用它:

<com.test.MyFrameLayout
        android:layout_width="fill_parent" android:layout_height="wrap_content">
    <ImageView
            android:id="@+id/frameView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/image1"
            />
</com.test.MyFrameLayout>

但现在内部的ImageView消失了.

我想我没有正确实现onMeasure或onLayout.我想我也需要调整孩子们的观点.但我现在不知道该怎么做.

UPDATE

根据TheDimasig的评论,我刚检查了我的代码并更新了我的问题.谢谢

解决方法

最简单的方法是更改​​onMeasure中的measurespec,但仍然调用super:
@Override
 protected void onMeasure(int widthMeasureSpec,int heightMeasureSpec) {
    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = (int) (width * 0.5);
    heightMeasureSpec = MeasureSpec.makeMeasureSpec(height,MeasureSpec.EXACTLY);
    super.onMeasure(widthMeasureSpec,heightMeasureSpec);
}

这样您就可以获得所需的尺寸,但不必手动测量子尺寸.

原文链接:https://www.f2er.com/android/318124.html

猜你在找的Android相关文章