4

我有一个扩展 LinearLayout 的自定义视图。这个自定义视图包含其他几个视图,它们的布局应该与 LinearLayout 完全一样,但是,我没有设法正确地布置它们……所有的子视图都相互重叠,隐藏了之前添加的所有子视图。

我的 onLayout 和 onMeasure 如下:

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
    // Do nothing. Do not call the superclass method--that would start a layout pass
    // on this view's children. PieChart lays out its children in onSizeChanged().
    super.onLayout(changed, l, t, r, b);
    Log.e(LOG_TAG, LOG_TAG + ".onLayout: " + l + ", " + t + ", " + r + ", " + b);

    int iChildCount = this.getChildCount();
    for ( int i = 0; i < iChildCount; i++ ) {
        View pChild = this.getChildAt(i);
        pChild.layout(l, t, pChild.getMeasuredWidth(), pChild.getMeasuredHeight());
    }
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    // Try for a width based on our minimum
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    Log.d(LOG_TAG, LOG_TAG + ".onMeasure: width: " + widthMeasureSpec + " getWidth: " + MeasureSpec.getSize(widthMeasureSpec));
    Log.d(LOG_TAG, LOG_TAG + ".onMeasure: height: " + heightMeasureSpec + " getHeight: " + MeasureSpec.getSize(heightMeasureSpec));
    Log.d(LOG_TAG, LOG_TAG + ".onMeasure: getPaddingLeft: " + getPaddingLeft() + " getPaddingRight: " + getPaddingRight());
    Log.d(LOG_TAG, LOG_TAG + ".onMeasure: getPaddingTop: " + getPaddingTop() + " getPaddingBottom: " + getPaddingBottom());

    // http://stackoverflow.com/a/17545273/474330
    int iParentWidth = MeasureSpec.getSize(widthMeasureSpec);
    int iParentHeight = MeasureSpec.getSize(heightMeasureSpec);

    this.setMeasuredDimension(iParentWidth, iParentHeight);

    int iChildCount = this.getChildCount();
    for ( int i = 0; i < iChildCount; i++ ) {
        View pChild = this.getChildAt(i);
        this.measureChild( pChild, 
                MeasureSpec.makeMeasureSpec(iParentWidth, MeasureSpec.EXACTLY), 
                MeasureSpec.makeMeasureSpec(iParentHeight, MeasureSpec.EXACTLY)
        );
    }
}

如何设置自定义视图的 x 位置、y 位置、宽度和高度?我已将自定义视图的 LayoutParam 设置为 WRAP_CONTENT,但是,它的行为仍然像 FILL_PARENT,占用了父视图中的所有可用空间。似乎我所有改变位置或大小的努力都没有奏效(我什至尝试 setPadding 来尝试控制位置)

4

2 回答 2

1

我在同样的问题上挣扎了一段时间。看起来它已经很长时间没有被问到了,但这是我为让它工作所做的。也许它会帮助某人。

扩展 LinearLayout 意味着如果您希望 onLayout 显示与 LinearLayout 相同的子视图,则不必覆盖它。要按预期进行布局,我所要做的就是删除我的 onLayout 方法并让 LinearLayout 类来处理它。

于 2013-11-15T19:35:13.663 回答
0

layout()方法的第三个和第四个参数分别是“相对于父级的右位置”和“相对于父级的底部位置”,而不是您似乎认为的宽度和高度。

于 2017-12-20T09:56:15.197 回答