在Android中,加載外部字體是很是容易的!字體
步驟以下:code
1. 建立新的Android工程;對象
2. 在工程下的assets文件夾下新建名字爲fonts的文件夾(名字能夠任意選取),把全部的外部字體文件都放在這裏面;以下圖所示:blog
3. 輯Activity代碼,代碼以下:get
//獲得TextView控件對象
TextView textView =(TextView)findViewById(R.id.textView);it
//將字體文件保存在assets/fonts/目錄下,建立Typeface對象class
Typeface typeFace =Typeface.createFromAsset(getAssets(),"fonts/xxx.ttf");im
//使用字體img
textView.setTypeface(typeFace);di