我正在尝试在 java 中剪辑 Canvas 的左上角和右上角。我知道你可以只使用addRoundRect
所有的角落,但我不确定只对顶角做什么。
这是我目前拥有的:
@Override
protected void onDraw(Canvas canvas) {
float radius = 12f;
Path clipPath = new Path();
RectF rect = new RectF(0, 0, this.getWidth(), this.getHeight());
//uh...
//clipPath.addRoundRect(rect, radius, radius, Path.Direction.CW);
canvas.clipPath(clipPath);
super.onDraw(canvas);
}