Android TextView 字体样式设置:取消斜体
Android TextView 字体样式设置:取消斜体
在 Android 开发中,如果你的 TextView 文字显示为斜体,但你想将其改为正常的非斜体样式,可以通过设置 android:textStyle 属性来实现。
将 android:textStyle 属性值设置为 'normal' 即可取消斜体样式。
代码示例:
<TextView
...
android:textStyle='normal'
... />
解释:
android:textStyle='normal'将 TextView 的字体样式设置为正常,也就是非粗体、非斜体。
通过以上方法,你就可以轻松地取消 Android TextView 的斜体样式了。
原文地址: http://www.cveoy.top/t/topic/f34h 著作权归作者所有。请勿转载和采集!