create typeface from font resource id

后端 未结 2 1008
余生分开走
余生分开走 2020-12-09 14:18

I have tried using Typeface.createFromAsset(getAssets(),\"font/myfont.ttf\"));

I know font directory should be in assets but in my case, I have an exist

2条回答
  •  Happy的楠姐
    2020-12-09 14:59

    This worked

    Typeface typeface = ResourcesCompat.getFont(this, R.font.app_font);
    

    Found this in the tutorial link by @Eselfar

提交回复
热议问题