android 字体加粗

参考 https://blog.csdn.net/to_cm/article/details/6002812

TextView tv = (TextView)findViewById(R.id.TextView01); 
TextPaint tp = tv.getPaint(); 
tp.setFakeBoldText(true);

原文地址:https://www.cnblogs.com/white-knight/p/9760565.html