美文网首页
Android 自定义APP字体

Android 自定义APP字体

作者: 洪荒之气 | 来源:发表于2020-12-09 16:45 被阅读0次

一、设置全局字体
方法1:使用反射机制进行设置
(1)把系统的typeface替换为自定义的
Typeface typeFace = Typeface.createFromAsset(getAssets(), "fonts/aa.ttf");
try {
// xml属性值与Typeface属性值对应
// normal Typeface.DEFAULT
// sans Typeface.SANS_SERIF
// serif Typeface.SERIF
// monospace Typeface.MONOSPACE
Field field = Typeface.class.getDeclaredField("SERIF" );
field.setAccessible( true);
field.set( null, typeFace );
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
(2)设置typeface值为 sans、 serif、 monospace其中一种,可在TextView、Activity、Application里面的xml样式里面设置,例如
<TextView
android:id="@+id/tv_typeface"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:typeface="serif"
android:text="Hellow world ~" />

二、 设置局部字体
在main下新建【assets/fonts】目录,把【.ttf或者.otf】文件放进去。然后使用如下:
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/aa.ttf");
textView.setTypeface(typeface);

三、设置WebView页面的字体
让开发的HTML5页面的小伙伴在设置页面的字体的时候引用APP中main/assets/fonts目录下的字体文件就可以了,在哪个模块使用改字体就在哪个位置用HTML5标签包起来,才能设置某一块文字的字体。如果要设置全局WebView的字体的话,就在HTML根标签上设置就好了,这样整篇文章就能使用该字体文件。

四、设置系统字体
TextView tvTypeface = (TextView) findViewById(R.id.tv_typeface);
tvTypeface.setTypeface(Typeface.create("sans-serif-condensed",Typeface.NORMAL));

五、设置全局字体
方法1:新建【res/font】,把【.ttf或者.otf】文件放进去,然后在XML文件中引用,例如:
<TextView
android:id="@+id/tv_typeface"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/typeface_bold"
android:text="Hellow world ~" />
以上设置注意 : fontFamily API16 新增,所以要使用低版本的兼容库 com.android.support:appcompat-v7:26.0.0 以上
如果要在代码中设置,需要这么写:
Typeface.create(ResourcesCompat.getFont(context, R.font.typeface_bold), Typeface.NORMAL);

方法2:先设置全局主题的字体,然后再在<application></application>中引用该主题或者在Activity中设置style(设置该主题的Activity才生效)
<style name="FontStyle">
<item name="android:fontFamily">casual</item>
</style>
或者
<style name="FontStyle">
<item name="android:fontFamily">@font/aa</item>
</style>
注意 :fontFamily API16 新增,所以要使用低版本的兼容库 com.android.support:appcompat-v7:26.0.0 以上,需要设置theme继承字Theme.AppCompat主题
<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
android:name=".CustomTypefaceActivity"
android:theme="@style/FontStyle" />

相关文章

  • android自定义字体

    Android O通过字体资源支持自定义字体,支持.otf(OpenType)和.ttf(TrueType)字体格...

  • Android 自定义APP字体

    一、设置全局字体方法1:使用反射机制进行设置(1)把系统的typeface替换为自定义的Typeface type...

  • 反射方式修改App字体

    自定义Applicaiton,实现全局App修改,对于字体也是同理,通过Typeface设置加载App全局字体,对...

  • Android APP支持自定义字体

    情景:需要为整个应用替换自定义字体。 Android对于文字的字体设置主要是通过以下两个对象 FontFamily...

  • 微信小程序加入自定义字体

    SVG转字体库 svg转字体可以使用 https://icomoon.io/app/ 微信中使用自定义字体 字体文...

  • Android自定义字体

    文章目的:快速入门Android中自定义各种字体! 前言:我们都知道,Android中默认的字体是黑体,而大多数a...

  • iOS开发-如何使用.ttf文件(自定义字体)

    客户要求APP中所有数据的显示和输入使用类似银行卡账号字体,后来查资料发现需要自定义字体,在使用自定义字体之前需要...

  • Android自定义字体设置

    Android自定义字体设置 1.typeface、fontFamily、textStyle介绍 1.typefa...

  • Android自定义字体

    在main文件夹下,新建assets/fonts文件,添加.otf文件 字体工具类 自定义字体基类 字体类 App...

  • Android 自定义字体

    说明 在一些应用中,有改变字体,或者某些页面有特殊字体要求时,Android自身的字体满足不了时,需要自定义字体,...

网友评论

      本文标题:Android 自定义APP字体

      本文链接:https://www.haomeiwen.com/subject/hgbhgktx.html