3

我正在构建一个自定义复合控件。此复合控件的组件之一是自定义按钮。我的 ShiftingTabButton 是我的复合控件类中的一个嵌套类。

我需要将 ShiftingTabButton 的 clipBounds 设置为比第一次绘制时的实际高度略短。

在下面显示的 ShiftingTabButton 的构造函数中,我设置了一些必要的参数,然后measure()使用 mode调用UNSPECIFIED,以确定新视图的预期大小。当我在调试模式下运行它时,我的 Nexus 7 可以看到width= 160 和height= 64。

到目前为止一切都很好。

但是,当我尝试使用修改后的 clipBounds 调用 setClipBounds() 时,应用程序崩溃了。

我尝试useShorterClipBounds在构造函数中定义一个标志,将设置移动clipBoundsonDraw()方法并使其依赖于标志检查,但我仍然遇到同样的崩溃。

public ShiftingTabButton(Context context, String string) {
    super(context);

    // parameter setup
    this.setText(string);
    this.setBackground(getResources().getDrawable(R.drawable.tab_unselected));
    this.setId(generateChildViewId());
    this.setTextSize(TypedValue.COMPLEX_UNIT_SP, 14);
    this.setPadding(dpToPx(7), 0, dpToPx(7), 0);

    // measure the view     
    int widthMeasureSpec = MeasureSpec.makeMeasureSpec(ViewGroup.LayoutParams.WRAP_CONTENT, MeasureSpec.UNSPECIFIED);
    int heightMeasureSpec = MeasureSpec.makeMeasureSpec(ViewGroup.LayoutParams.WRAP_CONTENT, MeasureSpec.UNSPECIFIED);
    this.measure(widthMeasureSpec, heightMeasureSpec);
    int width = this.getMeasuredWidth();
    int height = this.getMeasuredHeight();

    // adjust the clipBounds        
    Rect clipBounds = new Rect();
    clipBounds.set(0, 0, width, height - dpToPx(16));
    this.setClipBounds(clipBounds); // !App crashes executing this line of code!
}
4

2 回答 2

8

您可以轻松地复制实现以支持旧版本:

private Rect mClipBounds;

@Override
public void draw(Canvas canvas) {
    // Clip bounds implementation for JB_MR1 and older
    // Does not save the canvas, because the View implementation also doesn't...
    if (mClipBounds != null) {
        canvas.clipRect(mClipBounds);
    }
    super.draw(canvas);
}

@Override
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
public void setClipBounds(Rect clipBounds) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
        super.setClipBounds(clipBounds);
        return;
    }

    if (clipBounds != null) {
        if (clipBounds.equals(mClipBounds)) {
            return;
        }
        if (mClipBounds == null) {
            invalidate();
            mClipBounds = new Rect(clipBounds);
        } else {
            invalidate(Math.min(mClipBounds.left, clipBounds.left),
                    Math.min(mClipBounds.top, clipBounds.top),
                    Math.max(mClipBounds.right, clipBounds.right),
                    Math.max(mClipBounds.bottom, clipBounds.bottom));
            mClipBounds.set(clipBounds);
        }
    } else {
        if (mClipBounds != null) {
            invalidate();
            mClipBounds = null;
        }
    }
}

@Override
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
public Rect getClipBounds() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
        return super.getClipBounds();
    } else {
        return (mClipBounds != null) ? new Rect(mClipBounds) : null;
    }
}
于 2013-11-12T10:47:05.023 回答
2

我发现 setClipBounds() 仅在 Nexus 7 运行 4.2.2 时添加到版本 4.3 r2.1 的 sdk 中,因此找不到该方法。

相反,剪裁应该直接在画布上的 onDraw() 方法中完成。

于 2013-09-12T07:08:50.733 回答