等价于
当前位置:   article > 正文

TextView字体样式_android:fontfamily="sans-serif

android:fontfamily="sans-serif

1、TextView的默认字体样式 android:fontFamily=“sans-serif”

在这里插入图片描述

<TextView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:text="默认字体  1234  default" />
  • 1
  • 2
  • 3
  • 4

等价于

<TextView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:fontFamily="sans-serif"
	android:text="指定字体  1234  sans-serif"/>
  • 1
  • 2
  • 3
  • 4
  • 5

2、系统提供的字体样式

通过typeface属性或fontFamily属性设置字体样式
注:同时设置typeface和fontFamily时,只有fontFamily生效

typeface属性:

  1. sans
  2. serif
  3. normal
  4. monspace
    在这里插入图片描述
<TextView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:typeface="sans"
	android:text="字体样式  1234  sans"/>
  • 1
  • 2
  • 3
  • 4
  • 5

fontFamily属性:

  1. serif
  2. serif-monospace
  3. sans-serif
  4. sans-serif-black
  5. sans-serif-thin
  6. sans-serif-light
  7. sans-serif-medium
  8. sans-serif-smallcaps
  9. sans-serif-condensed
  10. sans-serif-condensed-light
  11. sans-serif-condensed-medium
  12. monospace
  13. casual
  14. cursive

在这里插入图片描述

<TextView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:fontFamily="serif"
	android:text="字体样式  1234  serif" />
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签