一动分,在代碼中動態(tài)設(shè)置麦箍,有兩種方法
1摧冀,通過獲取TextView的畫筆設(shè)置,不建議使用該方法蛮艰,加粗效果不明顯
TextView textView = new TextView(getContext());
TextPaint paint = textView.getPaint();
paint.setFakeBoldText(true);
2,通過setTypeface設(shè)置桃笙,推薦該方式
TextView textView=new TextView(getContext());
textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
二彻采,在布局中靜態(tài)設(shè)置,比較簡單直接
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textStyle="bold"/>
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者