TextView字体加粗

来源:互联网 发布:淘宝美工招聘信息深圳 编辑:程序博客网 时间:2024/05/01 20:56

在activity中:

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

也可以在xml文件中可以这样设置

android:textStyle="bold"


0 0