Android字型設定,Roboto字型使用

來源:互聯網
上載者:User

標籤:

一、自訂字型

1.android Typeface使用TTF字型檔設定字型

我們可以在程式中放入ttf字型檔,在程式中使用Typeface設定字型。
第一步,在assets目錄下建立fonts目錄,把ttf字型檔放到這。
第二步,程式中調用:

?
1234567 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” 可以將英文設定成粗體, 但是不能將中文設定成粗體,
將中文設定成粗體的方法是:

 

?
12 TextView tv = (TextView)findViewById(R.id.TextView01); tv.getPaint().setFakeBoldText(true);//中文仿“粗體”--使用TextPaint的仿“粗體”設定setFakeBoldText為true。

 

注意:部分字型中文無效,雖然不會報錯,但是對中文無效。二、使用RoBoto

自從Android4.0後預設字型就使用了Roboto,下面介紹一下使用方法:

 

 

?
123456 android:fontFamily="sans-serif" // roboto regularandroid:fontFamily="sans-serif-light" // roboto lightandroid:fontFamily="sans-serif-condensed" // roboto condensedandroid:fontFamily="sans-serif-thin" // roboto thin (android 4.2)//in combination withandroid:textStyle="normal|bold|italic"

 

可用的參數:

Regular
Italic
Bold
Bold-italic
Light
Light-italic
Thin
Thin-italic
Condensed regular
Condensed italic
Condensed bold
Condensed bold-italic

 

結伴旅遊,一個免費的交友網站:www.jieberu.com

推推族,免費得門票,遊景區:www.tuituizu.com

Android字型設定,Roboto字型使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.