PaintAPI

作者: 饮水思源为名 | 来源:发表于2018-07-26 17:04 被阅读12次
setARGB(int a, int r, int g, int b) // 设置 Paint对象颜色,参数一为alpha透明值

setAlpha(int a) // 设置alpha不透明度,范围为0~255

setAntiAlias(boolean aa) // 是否抗锯齿

setColor(int color)  // 设置颜色,这里[Android](http://lib.csdn.net/base/android)内部定义的有Color类包含了一些常见颜色定义

setTextScaleX(float scaleX)  // 设置文本缩放倍数,1.0f为原始

setTextSize(float textSize)  // 设置字体大小

setUnderlineText(booleanunderlineText)  // 设置下划线


相关文章

网友评论

    本文标题:PaintAPI

    本文链接:https://www.haomeiwen.com/subject/xxnbmftx.html