Android中字型設定Font

2021-07-03 16:35:54 字數 520 閱讀 6541

1.一般使用預設字型,可以使用以下四種安卓系統提供的字型。

android:typeface="normal"

android:typeface="sans"

android:typeface="serif"

android:typeface="monospace"

2.如果需要設定其他的字型,則需要先得到字型的 ttf檔案,例如 arial.ttf檔案等。

把ttf檔案放在assets\fonts目錄下。

public class fonttest {

public static void changefont(viewgroup root,activity act){

typeface tf = null;

//建立typeface物件

tf = typeface.createfromasset(act.getassets(), "fonts/arial.ttf");

for(int i=0;i

Android 字型設定

android 對中文字型支援很不好 需要加入相應的字型庫 1 建立布局layout 建立線性布局 linearlayout linearlayout newlinearlayout this 設定線性布局為垂直方向 linearlayout.setorientation linearlayout....

Android設定TextView字型

1.將字型檔案 例如hyliangpinxiancuj.ttf 放到assets目錄下 2.自定義multifonttextview繼承textview public class multifonttextview extends textview 初始化字型 param context priva...

Android 設定字型樣式

接下來就是 的使用了 直接貼圖 android layout width wrap content android layout height wrap content android text 字型樣式 android textsize 20dp android id id tv 1 androi...