Android设置文字粗体的方法

来源:互联网 发布:手机数据是什么 编辑:程序博客网 时间:2024/04/30 12:54

Android设置文字粗体的方法:

testTextView=(TextView) findViewById(R.id.testTextView);
testTextView.getPaint().setFakeBoldText(true);

英文和数字可以直接用XML去设置:
android:textStyle="bold"

原创粉丝点击