1. 程式人生 > >android 設定系統自帶字型

android 設定系統自帶字型

1,佈局檔案中設定

//設定字型

android:typeface="normal" //sans  serif  monospace

設定和樣式

android:textStyle="normal"  //bold  粗體  italic斜體

android:fontFamily=""

2.java程式碼設定

textVie.setTypeface(Typeface.DEFAULT); //設定字型,相當於xml中設定android:typeface屬性

textVie.setTypeface(Typeface.DEFAULT,Typeface.BOLD_ITALIC);  //設定字型和樣式

相當於在xml中設定android:typeface屬性和android:textStyle屬性