android 中的字体系列用法

Font-family usage in android

font/lobster.xml

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
    <font
        android:fontStyle="normal"
        android:fontWeight="400"
        android:font="@font/lobster_regular" />

    <font
        android:fontStyle="italic"
        android:fontWeight="400"
        android:font="@font/lobster_italic" />

    <font
        android:fontStyle="bold"
        android:fontWeight="600"
        android:font="@font/lobster_bold" />
</font-family>

在你的xml中使用

android:fontFamiliy="@font/lobster"
android:textStyle="italic"

或在代码中

textview.setTypeface(textview.getTypeface(), Typeface.ITALIC);