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

时间:2022-09-09 07:14:19
//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) {
} }