1

我在 XML 文件中定义了一个自定义布局,它有一个带有一堆子视图的 RelativeLayout 根。

现在,我定义了以下类:

public class MyCustomView extends RelativeLayout {

    public MyCustomView(Context context) {
        super(context);
        init();
    }

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();     
    }

    public MyCustomView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);    
        init();
    }

    private void init() {
        LayoutInflater inflater = (LayoutInflater)  getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.my_custom_view, this, true);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

        Log.d("Widget", "Width spec: " + MeasureSpec.toString(widthMeasureSpec));
        Log.d("Widget", "Height spec: " + MeasureSpec.toString(heightMeasureSpec));

        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        int widthSize = MeasureSpec.getSize(widthMeasureSpec);

        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        int heightSize = MeasureSpec.getSize(heightMeasureSpec);

        int chosenWidth = chooseDimension(widthMode, widthSize);
        int chosenHeight = chooseDimension(heightMode, heightSize);

        int chosenDimension = Math.min(chosenWidth, chosenHeight);

        setMeasuredDimension(chosenDimension, chosenDimension);
    }

    private int chooseDimension(int mode, int size) {
        if (mode == MeasureSpec.AT_MOST || mode == MeasureSpec.EXACTLY) {
            return size;
        } else { 
            return getPreferredSize();
        }
    }

    private int getPreferredSize() {
        return 400;
    }
}

如您所见,我将根设置为MyCustomView实例,并将附加标志设置为真。

我想要实现的是,当我将此自定义视图添加到另一个布局的 xml 中时,它将实例化MyCustomView将在 XML 中定义布局的类。

我已经尝试使用<merge>标记,但是这样我就无法根据需要在 XML 中排列我的子视图。

我还尝试膨胀 XML 并将其添加为视图MyCustomView,但这样我就变得多余了RelativeLayout

最后一件事,我添加了onMeasure()只是为了完整性。

4

1 回答 1

2

发生膨胀但未显示子视图

RelativeLayout与您在布局中所做的相比,它做的更多(很多)(onMeasure基本上,孩子们根本没有用您的代码衡量,所以他们没有要显示的东西)。如果你扩展一个ViewGrouplike RelativeLayout,你需要让那个类来做它的回调(onMeasureonLayout),或者至少,非常小心地复制方法并按照你的意愿修改它(如果你想看到一些东西)。

因此,删除该onMeasure方法以查看子项或更好地解释为什么要覆盖它。

于 2013-01-15T16:30:15.060 回答