Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器

首页 / 操作系统 / Linux / 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类说明,其中声明了所有系统提供的属性说明。