Adding custom Font to Theme in Android

前端 未结 6 1901
故里飘歌
故里飘歌 2020-11-29 19:35

Is there any way to add custom fonts in Themes in Android?

I have read Quick Tip: Customize Android Fonts, but here we have to programmetrically add custom font to

6条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 19:59

    You can include your custom font type in the assets folder and retreive it from there.

    Declare the Typefaces as:

    Typeface helveticaBold;
    Typeface helveticaRegular;
    

    in onCreate() write the following code:

    helveticaBold = Typeface.createFromAsset(getAssets(), "helvetica_bold.ttf");
    helveticaRegular = Typeface.createFromAsset(getAssets(), "helvetica_regular.ttf");
    

    lastly, set the typeface of the text of TextView or EditText as:

    editText.setTypeface(helveticaRegular);
    

    that's it...

提交回复
热议问题