使用画布绘制矩形,为什么总是有笔触?

时间:2019-04-28 04:58:41

标签: android

下面是我的代码:

Paint paint = new Paint();
paint.setAntiAlias(true);paint.setColor(getResources().getColor(android.R.color.holo_red_light));
RectF rel=new RectF(100,100,300,300);
canvas.drawRoundRect(rel,30,30,paint);

绘画效果:

enter image description here

放大后:

enter image description here

我应该如何去除黑色边框?

0 个答案:

没有答案