|
1 | android:typeface="font name" |
1234567 | import android.graphics.Typeface;import android.widget.TextView; Typeface font = Typeface.createFromAsset(getAssets(), "fonts/Bleeding Cowboys.ttf"); TextView custom = (TextView)findViewById(R.id.customFont);custom.setTypeface(font); |
12345678 | import android.graphics.Typeface;import android.widget.TextView; // Bleeding Cowboys.ttf 放在 sdcard 的根目錄下Typeface font = Typeface.createFromFile("sdcard/Bleeding Cowboys.ttf"); TextView custom = (TextView)findViewById(R.id.customFont);custom.setTypeface(font); |
歡迎光臨 魚骨頭的雲端圖書館 (http://mhfo.hotbbs.info/) | Powered by Discuz! 7.0.0 |