作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有 3 个 TextView 。我需要将它们的权重设置为 Light、Regular 和 Condensed。有人可以帮助我了解如何在 Android 中实现这一点吗?
最佳答案
在 TextView
上使用 android:textStyle
来设置文本样式,如 bold、italic 或普通。
这是一个带有 bold 文本样式的 TextView
示例:
<TextView
android:id="@+id/hello_world"
android:text="hello world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"/>
如果您想使用浅色或浓缩色,则必须更改字体。你可以这样做:
android:fontFamily="sans-serif-light"
更多关于字体的信息,也请看下面的回答Valid values for android:fontFamily and what they map to?
关于android - 如何在Android中将字体粗细设置为轻巧、常规,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31947165/
我是一名优秀的程序员,十分优秀!