2013年9月24日 星期二

Android TextView設置粗體

針對英文字母與阿拉伯數字設成粗體,可從xml布局中設置
android:textStyle="bold"

但無法直接對中文設置粗體

必須由程式面去控制,Java設置如下:

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

沒有留言:

張貼留言