本文介绍了如何在 Android 中将文本更改为粗体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何更改 Android TextView 中的 text/font 设置?

How do you change text/font settings in an Android TextView?

例如,如何使文本粗体?

推荐答案

layout.xml 文件中执行此操作:

To do this in the layout.xml file:

android:textStyle

例子:

android:textStyle="bold|italic"

编程方法是:

setTypeface(Typeface tf)

设置显示文本的字体和样式.请注意,并非所有 Typeface 系列实际上都有粗体和斜体变体,因此您可能需要使用 setTypeface(Typeface, int) 来获得您真正想要的外观.

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 中将文本更改为粗体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-16 19:59