Android设置文字粗体的方法:
1,java代码总
TextView textView=(TextView) findViewById(R.id.text_view_id);
textView.getPaint().setFakeBoldText(true);
2,直接用XML去设置:
android:textStyle="bold"
Android设置文字粗体的方法:
1,java代码总
TextView textView=(TextView) findViewById(R.id.text_view_id);
textView.getPaint().setFakeBoldText(true);
2,直接用XML去设置:
android:textStyle="bold"