Android中TextView的字体大小

在为TextView指定字体大小的时候,同样也可以使用官方提供的三种字体来保持和系统风格的一致性,具体用法是为TextView指定一个属性: Android:textAppearance,它的值可以为:

android:textAppearance="?android:attr/textAppearanceLarge" 对应的字体大小(18dp)

android:textAppearance="?android:attr/textAppearanceMedium" 对应的字体大小(16dp)

android:textAppearance="?android:attr/textAppearanceSmall" 对应的字体大小(14dp)

同时也可以参考官方文档中android.R类说明,其中声明了所有系统提供的属性说明。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwgjxd.html