赞
踩
今天,简单讲讲Android里如何设置TextView字体加粗。
不废话了,用过多次,还是没记住。直接上代码。
1.布局文件中这样设置即可:
XML/HTML代码
android:textStyle="bold"
中文字体加粗:
TextView textView= new TextView(context);//或从xml导入
TextPaint paint = textView.getPaint();
paint.setFakeBoldText(true);
或者
// 方式一
textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
// 方式二
textView.setTypeface(Typeface.DEFAULT_BOLD);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。