等价于 赞 踩 等价于 通过typeface属性或fontFamily属性设置字体样式 typeface属性: fontFamily属性: Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
TextView字体样式_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" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="指定字体 1234 sans-serif"/>
2、系统提供的字体样式
注:同时设置typeface和fontFamily时,只有fontFamily生效
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:typeface="sans"
android:text="字体样式 1234 sans"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="serif"
android:text="字体样式 1234 serif" />