在textview裡設定字型加粗分為兩種方法,一種是在**中動態新增,一種是在xml中靜態新增
動態新增分兩種方法:
1、
textview textview = (textview)findviewbyid(r.id.text_view);
textpaint tp = textview .getpaint();
tp.setfakeboldtext(true);
2、(推薦)
textview textview = (textview)findviewbyid(r.id.text_view);
//設定為加粗
textview .settypeface(typeface.defaultfromstyle(typeface.bold));
//設定為不加粗
textview.settypeface(typeface.defaultfromstyle(typeface.normal));
靜態方法:
android:textstyle="bold"
TextView設定字型樣式
packagecom.zhou.activity import importandroid.graphics.color importandroid.os.bundle importandroid.text.spannable importandroid.text.spannablestring i...
Android設定TextView字型
1.將字型檔案 例如hyliangpinxiancuj.ttf 放到assets目錄下 2.自定義multifonttextview繼承textview public class multifonttextview extends textview 初始化字型 param context priva...
TextView設定個別字型樣式
隨筆 139 文章 1 1 spannablestring msp new spannablestring 測試 xm 更換當前號碼將從手機傳送一條普通簡訊進行驗證 2 msp.setspan new foregroundcolorspan color.blue 2,xm.length 2,span...