美文网首页
画笔粗细的设置

画笔粗细的设置

作者: 吉凶以情迁 | 来源:发表于2018-10-31 11:35 被阅读0次
    public static void setTypeFace(Context context, Paint paint, Typeface tf) {
        if(tf!=null){
            paint.setTypeface(tf);
        }else{
//            paint.setTypeface(Typeface.DEFAULT_BOLD);
            Typeface font = Typeface.create(Typeface.SANS_SERIF, Typeface.NORMAL);
            paint.setTypeface(font);
        }
    }

相关文章

网友评论

      本文标题:画笔粗细的设置

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