Android将字体加粗

一、PS中常用的技巧,用阴影、描边代替加粗,这里借鉴,非原创
android:shadowColor="#000000"
android:shadowDx="0.2" android:shadowDy="0.0" android:shadowRadius="0.2"
转自: http://www.eoeandroid.com/thread-75171-1-1.html

二、在xml文件中使用android:textStyle=”bold”
 
三、但是不能将中文设置成粗体,将中文设置成粗体的方法是: 

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


你可能感兴趣的:(Android将字体加粗)