读书人

TextView设立中文粗体

发布时间: 2012-09-13 09:51:53 作者: rapoo

TextView设置中文粗体

在xml布局文件中设置android:textStyle=“bold”可以将英文字母和阿拉伯数字设置成粗体,对中文不起作用。

将中文设置成粗体的方法是: TextView textView = (TextView)findViewById(R.id.textView);

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?TextPaint tp =?textView?.getPaint();

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tp.setFakeBoldText(true);

读书人网 >移动开发

热点推荐