本文介绍了你如何在 Android 中将文本更改为粗体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何更改 Android TextView
中的文本/字体设置?
例如,如何使文本粗体?
解决方案
要在 layout.xml
文件中执行此操作:
android:textStyle
示例:
android:textStyle="bold|italic"
以编程方式的方法是:
setTypeface(Typeface tf)
设置应显示文本的字体和样式.请注意,并非所有 Typeface
系列实际上都有粗体和斜体变体,因此您可能需要使用 setTypeface(Typeface, int)
来获得您真正想要的外观.>
How do you change text/font settings in an Android TextView
?
For example, how do you make the text bold?
解决方案
To do this in the layout.xml
file:
android:textStyle
Examples:
android:textStyle="bold|italic"
Programmatically the method is:
setTypeface(Typeface tf)
Sets the typeface and style in which the text should be displayed. Note that not all Typeface
families actually have bold and italic variants, so you may need to use setTypeface(Typeface, int)
to get the appearance that you actually want.
这篇关于你如何在 Android 中将文本更改为粗体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!