天天看點

TextView使用指定的TTF字庫

  public class FontTest extends Activity {     

          @Override     

          public void onCreate(Bundle savedInstanceState) {     

          super.onCreate(savedInstanceState);     

          setContentView(R.layout.main);     

          Typeface font = Typeface.createFromAsset(getAssets(), "fonts/sans.ttf");    

           // 字型檔案必須是true type font的格式(ttf);   

          // 當使用外部字型卻又發現字型沒有變化的時候(以 Droid Sans代替),通常是因為這個字型android沒有支援,而非你的程式發生了錯誤            

           TextView text = (TextView)findViewById(R.id.text);     

            text.setTypeface(font);     

            text.setText("Hello Android!");     

            text.setTextSize(40);     

            }     

}