Android Typeface createFromAsset

后端 未结 7 2142
滥情空心
滥情空心 2020-12-14 14:49

I Have a Custom View which draws text onto the Canvas. I want to change the font to a font stored in the assets folder.

I

7条回答
  •  情话喂你
    2020-12-14 15:07

    My mistake was adding the line

    Typeface mFont = Typeface.createFromAsset(this.getAssets(), "abc.ttf");
    

    before onCreate()

提交回复
热议问题