標籤:android4.0 字型 roboto使用 自訂字型
一、自訂字型
1.android Typeface使用TTF字型檔設定字型
我們可以在程式中放入ttf字型檔,在程式中使用Typeface設定字型。
第一步,在assets目錄下建立fonts目錄,把ttf字型檔放到這。
第二步,程式中調用:
AssetManager mgr=getAssets();//得到AssetManagerTypeface tf=Typeface.createFromAsset(mgr, "fonts/ttf.ttf");//根據路徑得到Typefacetv=findViewById(R.id.textview);tv.setTypeface(tf);//設定字型
2.在xml檔案中使用android:textStyle=”bold” 可以將英文設定成粗體, 但是不能將中文設定成粗體,
將中文設定成粗體的方法是:
TextView tv = (TextView)findViewById(R.id.TextView01); tv.getPaint().setFakeBoldText(true);//中文仿“粗體”--使用TextPaint的仿“粗體”設定setFakeBoldText為true。
注意:部分字型中文無效,雖然不會報錯,但是對中文無效。二、使用RoBoto自從Android4.0後預設字型就使用了Roboto,下面介紹一下使用方法:
android:fontFamily="sans-serif" // roboto regularandroid:fontFamily="sans-serif-light" // roboto lightandroid:fontFamily="sans-serif-condensed" // roboto condensedandroid:fontFamily="sans-serif-thin" // roboto thin (android 4.2)//in combination withandroid:textStyle="normal|bold|italic"
可用的參數:
Regular
Italic
Bold
Bold-italic
Light
Light-italic
Thin
Thin-italic
Condensed regular
Condensed italic
Condensed bold
Condensed bold-italic
Android字型設定,Roboto字型使用