標籤:android
一、自訂字型
1.android Typeface使用TTF字型檔設定字型
我們可以在程式中放入ttf字型檔,在程式中使用Typeface設定字型。
第一步,在assets目錄下建立fonts目錄,把ttf字型檔放到這。
第二步,程式中調用:
[java] view plaincopy
AssetManager mgr=getAssets();//得到AssetManager
Typeface tf=Typeface.createFromAsset(mgr, "fonts/ttf.ttf");//根據路徑得到Typeface
tv=findViewById(R.id.textview);
tv.setTypeface(tf);//設定字型
2.在xml檔案中使用android:textStyle=”bold” 可以將英文設定成粗體, 但是不能將中文設定成粗體,
將中文設定成粗體的方法是:
[java] view plaincopy
TextView tv = (TextView)findViewById(R.id.TextView01);
tv.getPaint().setFakeBoldText(true);//中文仿“粗體”--使用TextPaint的仿“粗體”設定setFakeBoldText為true。
注意:部分字型中文無效,雖然不會報錯,但是對中文無效。二、使用RoBoto
自從Android4.0後預設字型就使用了Roboto,下面介紹一下使用方法:
[java] view plaincopy
android:fontFamily="sans-serif" // roboto regular
android:fontFamily="sans-serif-light" // roboto light
android:fontFamily="sans-serif-condensed" // roboto condensed
android:fontFamily="sans-serif-thin" // roboto thin (android 4.2)
//in combination with
android: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 KSOAP2調用.net webservicejQuery教程(8)-DOM樹操作之使用反向插入方法android學習筆記(34)使用AlertDialog建立簡單對話方塊android學習筆記(33)畫廊視圖(Gallery)的功能和用法android navidgation drawer 在隱藏式瀏覽選單中如何改變List選中項的...
更多關於android開發文章
本文出自 “萌萌的it人” 部落格,請務必保留此出處http://jlins.blog.51cto.com/4487484/1599257
Android字型設定,Roboto字型使用