使用画布绘制圆角线

时间:2018-03-03 14:19:11

标签: android canvas

我正在尝试使用画布绘制圆角线。比如:

enter image description here

public class MyView extends View {

 Paint paint;
 Path path;

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

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

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

 private void init() {
  paint = new Paint();
  paint.setColor(Color.BLUE);
  paint.setStrokeWidth(10);
  paint.setStyle(Paint.Style.STROKE);

  path = new Path();
  path.moveTo(50, 50);
  path.lineTo(50, 500);
  path.lineTo(200, 500);
  path.lineTo(200, 300);
  path.lineTo(350, 300);

  float radius = 50.0f;

  CornerPathEffect cornerPathEffect =
    new CornerPathEffect(radius);

  paint.setPathEffect(cornerPathEffect);

 }

 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  canvas.drawPath(path, paint);

 }

}

我可以使用如上所示的绘画绘制角线,但不能从画布绘制。

我尝试了 canvas.drawLine() canvas.drawArc()来获得相同的效果,但却未能做到这一点。

有人可以帮我解决这个问题吗?

0 个答案:

没有答案