无法在View Android上设置我的自定义字体

时间:2018-04-01 13:03:52

标签: android view fonts

我正在尝试在TextView上设置自定义字体:

public void setHeaderTextWithKaushan (String text) {
    headerText.setText(text);
    Typeface face = Typeface.createFromAsset(getResources().getAssets(), "font/kaushan.otf");
    headerText.setTypeface(face);
}

但是我收到了一个错误:

java.lang.RuntimeException: Font asset not found font/kaushan.otf

我读过类似的问题,有些人说将字体文件夹从res移到assets,但是我打开了项目结构(*图片),没有assets文件夹中。

Project structure

问题出在哪?

0 个答案:

没有答案