如何在 android 中将 Roboto 变体字体系列设置为 Textview?

How to set Roboto variant font family to a Textview in android?

我必须将 Roboto 粗体字体样式添加到我的文本视图中。如何在 android studio 中实施。

我是必须从外部添加字体系列还是可以选择在内部添加?

不知道怎么办?你能帮我解决这个问题吗?

来自 Android Docs

要为 TextView 设置字体,在布局 XML 文件中,将 fontFamily 属性设置为您要访问的字体文件。

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="@font/roboto"/>

对于任何字体系列,我们必须下载该文件(.ttf 格式)并将该文件添加到我们的项目 directory.That 下,字体 directory.After 添加这些文件,我们可以使用它在我们的文本视图中使用 android:fontFamily 属性。