0
点赞
收藏
分享

微信扫一扫

Android的TextView设置加粗对汉字无效

​​albert1017​​

​​Android的TextView设置加粗对汉字无效​​

//not work
textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));

 

//work!
static public void setTextBold(TextView textView, boolean isBold) {
try {
if(textView != null) {
Paint paint = textView.getPaint();
if(paint != null) {
paint.setFakeBoldText(isBold);
}
}
} catch (Throwable var3) {
}

}

 



举报

相关推荐

0 条评论