欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android中自定义字体样式

程序员文章站 2022-05-15 08:45:06
...

在安卓中可以对一个相同的字体提取一个相同的样式,有利于复用,提高代码质量。

例如在values下的style下创建样式如下:

 <style name="CodeFont" parent="Base.TextAppearance.AppCompat.Medium">
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:textColor">@color/colorAccent</item>
        <item name="android:textSize">30sp</item>
    </style>

然后在xml文件中进行引用。

  <TextView
        style="@style/CodeFont"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />

然后就可以显示出对应样式的字体了。

Android中自定义字体样式


相关标签: android style