Android APP支持自定义字体

情景:需要为整个应用替换自定义字体。

Android对于文字的字体设置主要是通过以下两个对象

FontFamily、Typeface
  • 在XML文件中设置单个字体:

<TextView

        android:id="@+id/tv_typeface"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginTop="10dp"

        android:fontFamily="sans-serif-condensed"

        android:text="@string/custom_typeface" />

  • 代码中设置单个字体:

TextView tvTypeface = (TextView) findViewById(R.id.tv_typeface);

tvTypeface.setTypeface(Typeface.create("sans-serif-condensed",Typeface.NORMAL));

看到这儿,可能会有人有疑问,这里边设置的“sans-serif-condensed”从哪儿来的。有什么系统可以设置的字体呢?如果要自定义字体怎么设置?

首先我们先来看下系统内置的字体都有哪些?
/system/etc/fonts.xml

可以看到这个配置文件详细定义了具体的fontFamily名称及对应的字体文件,而我们设置的系统支持的字体就来源于这个文件,在不同的A你droid版本的系统内置的系统字体是不一样的


    ...

    <family name="sans-serif">

        <font weight="100" style="normal">Roboto-Thin.ttf</font>

        <font weight="100" style="italic">Roboto-ThinItalic.ttf</font>

        <font weight="300" style="normal">Roboto-Light.ttf</font>

        <font weight="300" style="italic">Roboto-LightItalic.ttf</font>

        <font weight="400" style="normal">Roboto-Regular.ttf</font>

        <font weight="400" style="italic">Roboto-Italic.ttf</font>

        <font weight="500" style="normal">Roboto-Medium.ttf</font>

        <font weight="500" style="italic">Roboto-MediumItalic.ttf</font>

        <font weight="900" style="normal">Roboto-Black.ttf</font>

        <font weight="900" style="italic">Roboto-BlackItalic.ttf</font>

        <font weight="700" style="normal">Roboto-Bold.ttf</font>

        <font weight="700" style="italic">Roboto-BoldItalic.ttf</font>

    </family>

    <family name="serif">

        <font weight="400" style="normal">NotoSerif-Regular.ttf</font>

        <font weight="700" style="normal">NotoSerif-Bold.ttf</font>

        <font weight="400" style="italic">NotoSerif-Italic.ttf</font>

        <font weight="700" style="italic">NotoSerif-BoldItalic.ttf</font>

    </family>

    <family name="monospace">

        <font weight="400" style="normal">DroidSansMono.ttf</font>

    </family>

    <alias name="sans-serif-monospace" to="monospace" />

    <alias name="monaco" to="monospace" />

    <family name="serif-monospace">

        <font weight="400" style="normal">CutiveMono.ttf</font>

    </family>

    <alias name="courier" to="serif-monospace" />

    <alias name="courier new" to="serif-monospace" />

    <family name="casual">

        <font weight="400" style="normal">ComingSoon.ttf</font>

    </family>



    ...

/system/fonts

这个文件夹里边存储了系统具体的字体文件


AndroidClock.ttf

AndroidClock_Highlight.ttf

AndroidClock_Solid.ttf

AndroidEmoji.ttf

Clockopia.ttf

DroidNaskh-Regular.ttf

DroidNaskhUI-Regular.ttf

DroidSans-Bold.ttf

DroidSans.ttf

DroidSansArmenian.ttf

DroidSansEthiopic-Regular.ttf

DroidSansFallback.ttf

DroidSansGeorgian.ttf

DroidSansHebrew-Bold.ttf

DroidSansHebrew-Regular.ttf

DroidSansMono.ttf

DroidSerif-Bold.ttf

DroidSerif-BoldItalic.ttf

DroidSerif-Italic.ttf

DroidSerif-Regular.ttf

MTLmr3m.ttf

Roboto-Bold.ttf

Roboto-BoldItalic.ttf

Roboto-Italic.ttf

Roboto-Light.ttf

Roboto-LightItalic.ttf

Roboto-Regular.ttf

Roboto-Thin.ttf

...

  • 设置自定义字体文件

新建/res/font 文件夹,添加自定义的字体文件 .ttf或者.otf,如添加typeface_bold.ttf自定义字体文件,


<!--XML设置自定义字体-->

<TextView

        android:id="@+id/tv_typeface"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginTop="10dp"

        android:fontFamily="@font/typeface_bold"

        android:text="@string/custom_typeface" />

<!--代码设置自定义字体-->

Typeface.create(ResourcesCompat.getFont(context, R.font.typeface_bold), Typeface.NORMAL);

SpannableString设置自定义字体

/**

* 自定义TypefaceSpan

*/

public class CustomTypefaceSpan extends TypefaceSpan {

    private final Typeface newType;

    public CustomTypefaceSpan(String family, Typeface type) {

        super(family);

        newType = type;

    }

    @Override

    public void updateDrawState(TextPaint ds) {

        applyCustomTypeFace(ds, newType);

    }

    @Override

    public void updateMeasureState(TextPaint paint) {

        applyCustomTypeFace(paint, newType);

    }

    private static void applyCustomTypeFace(Paint paint, Typeface tf) {

        paint.setTypeface(tf);

    }



//设置自定义的TypefaceSpan

setSpan(new CustomTypefaceSpan(text.toString(), typeFace), start, end, flag);

如何为整个APP,全局替换字体呢?

添加自定义字体到Application的theme


<style name="FontStyle">

    <item name="android:fontFamily">casual</item>

</style>

<!--修改AndroidManifest文件Application style属性即可-->

<application

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:roundIcon="@mipmap/ic_launcher_round"

        android:supportsRtl="true"

        android:theme="@style/FontStyle">

</application>

<!--单独修改Activity样式-->

<activity

        android:name=".CustomTypefaceActivity"

        android:theme="@style/FontStyle" />

为不同的语言设置不同的字体
  • 资源文件下面添加自定义字体文件

<!-- 默认全局中粗字体 -->

/res/font/ibmplexsans_semibold.ttf

<!-- 泰文中粗字体 -->

/res/font/sarabun_semibold.ttf

  • 资源文件夹下面创建不同语言的theme 不同theme定义不同的字体引用

<!-- /res/values/styles.xml -->

<style name="TextViewFontSemiBold">

        <item name="android:fontFamily">@font/ibmplexsans_semibold</item>

</style>

<!-- /res/values-th-rTH/styles.xml -->

<style name="TextViewFontSemiBold">

        <item name="android:fontFamily">@font/sarabun_semibold</item>

</style>

  • 代码创建工具类不同语言引用不同的字体

public class FontUtil {

    public static Typeface createTypeFace(Context context, @FontConstant.FontTemplete String font) {

        int fontResourceId = R.font.sarabun_regular;

        if (LanguageManager.getInstance(context).isCurrentThai()) {

            if (FontConstant.FONT_BOLD.equalsIgnoreCase(font)) {

                fontResourceId = R.font.sarabun_bold;

            }...

        } else {

            if (FontConstant.FONT_BOLD.equalsIgnoreCase(font)) {

                fontResourceId = R.font.ibmplexsans_bold;

            }...

        }

        return Typeface.create(ResourcesCompat.getFont(context, fontResourceId), Typeface.NORMAL);

    }

}

  • 还有一种根据不同语言定义不同字体的方法,但是这种在语言切换后定义的不同字体需要APP杀死重启才会生效

/res/fonts/ibmplexsans_semibold.ttf

/res/fonts-th-rTH/ibmplexsans_semibold.ttf  //名称需要同默认字体一样 但是实际是泰文字体

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容