Android - 笔划在圆角矩形的角落看起来像素化

时间:2012-05-16 21:28:43

标签: android stroke

为什么矩形角落的笔划如此难看?如果我在xml中绘制形状,它工作正常(至少它在活动中工作,我无法用小部件测试它)。

Paint strokePaint = new Paint();
strokePaint.setARGB(255, 16, 23, 131);
strokePaint.setStyle(Paint.Style.STROKE);
strokePaint.setStrokeWidth(8);

enter image description here

我正在测试hdpi密度。有人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:11)

尝试:

strokePaint.setAntiAlias(true)