我的三星 Galaxy S3 和自定义TextView
组件面临巨大的性能问题。
我已经覆盖了onDraw
方法:
canvas.drawText(getText().toString(), x, y, borderPaint);
canvas.drawText(getText().toString(), x, y, textPaint);
问题在于borderPaint
使用Paint.Style.STROKE
. 如果我将该属性注释掉,一切都会顺利进行,但我需要它来为我的TextView
谢谢。