android 自定义字体(转载)

作者:黎赵太郎

链接:https://www.zhihu.com/question/38615247/answer/179928113

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

Android O推出了一项新的功能「Fonts in XML」,借助这项功能,我们能够像使用其他资源文件一样使用字体,比较方便地实现App全局字体的替换。

为了能够在API 14或者以上的设备上使用Fonts in XML特性,我们需要使用到Support Library 26。更多的内容可以参考「使用Support Library」小节。

在Android Studio中按照如下步骤将字体作为资源文件添加至工程:

1. 右键单击项目的app / res文件夹,然后选择New > Android resource directory

2. 打开下拉菜单并选择font,输入font作为File name,点击OK

注意名称字体资源文件夹的名称必须为font

<img src="https://pic4.zhimg.com/50/v2-aa7a80cd3f8395c9b5ecec518893c6ae_hd.jpg" data-rawwidth="1290" data-rawheight="792" class="origin_image zh-lightbox-thumb" width="1290" data-original="https://pic4.zhimg.com/v2-aa7a80cd3f8395c9b5ecec518893c6ae_r.jpg">

3. 将字体文件拖放到新的res / font文件夹中。Android O支持.otf(OpenType)和.ttf(TrueType)两种格式的字体文件。

<img src="https://pic4.zhimg.com/50/v2-d9dded49bbdfad43a549c149dc7b3b77_hd.jpg" data-rawwidth="298" data-rawheight="141" class="content_image" width="298">

4. 双击字体文件可以在编辑器中对字体进行预览。

<img src="https://pic1.zhimg.com/50/v2-9993efa9fbbd6958cc811a61d308c5cb_hd.jpg" data-rawwidth="2855" data-rawheight="607" class="origin_image zh-lightbox-thumb" width="2855" data-original="https://pic1.zhimg.com/v2-9993efa9fbbd6958cc811a61d308c5cb_r.jpg">

创建Font family

在Android Studio中创建Font family的步骤如下:

1. 右键单击项目的res / font文件夹,然后选择New > Font resource file

2. 输入文件名,然后点击OK.

3. 打开此XML文件并定义该字体的所有不同版本,以及其样式和权重属性,例如:

在XML布局中使用字体资源

给TextView添加字体

在XML布局文件中,将fontFamily设置为你想要的访问的字体文件:

打开Properties窗口,设置TextView的字体:

选择一种视图打开Properties窗口

展开textAppearance,选择fontFamily表中的一种字体类型。

<img src="https://pic4.zhimg.com/50/v2-10dc69fabcb9a429cd774e7a4499c587_hd.jpg" data-rawwidth="636" data-rawheight="913" class="origin_image zh-lightbox-thumb" width="636" data-original="https://pic4.zhimg.com/v2-10dc69fabcb9a429cd774e7a4499c587_r.jpg">

<img src="https://pic4.zhimg.com/50/v2-571cf5901d1b9f79ee16ac1a6f6b9392_hd.jpg" data-rawwidth="3124" data-rawheight="1249" class="origin_image zh-lightbox-thumb" width="3124" data-original="https://pic4.zhimg.com/v2-571cf5901d1b9f79ee16ac1a6f6b9392_r.jpg">

添加字体至style

打开style.xml文件,将fontFamily属性设置为你想要访问的字体文件。

@font/lobster

在你的App的Theme中配置此属性即可实现整个App的字体替换。

使用代码控制字体

Typefacetypeface=getResources().getFont(R.font.myfont);textView.setTypeface(typeface);

使用Support Library

当我们通过Support Library实现Fonts in XML特性时,需要使用app命名空间。Support Library目前支持API 14及以上。

在Android Support Library 26.0-beta1中,必须同时使用android和app命名空间进行声明,以确保在Android O版本及以下设备上字体能够被正确加载。

通过代码控制:

Typefacetypeface=ResourcesCompat.getFont(context,R.font.myfont);

内容均来自Android Developer官网,做了简单的翻译,水平有限,还请见谅,原地址:https://developer.android.com/preview/features/fonts-in-xml.html

参考:https://developer.android.com/preview/features/working-with-fonts.html

更多内容:

1. YouTube -What&#x27;s New in Android Support Library (Google I/O &#x27;17)

2. Google Developers Blog -Android O Developer Preview 终于推出啦!

另外,我在我的开源项目TonnyL/PaperPlane中使用Fonts in XML实现了App的字体的整体替换。效果如下:

<img src="https://pic4.zhimg.com/50/v2-b950c3468b10c05f1b8aebc0666be238_hd.jpg" data-rawwidth="720" data-rawheight="1280" class="origin_image zh-lightbox-thumb" width="720" data-original="https://pic4.zhimg.com/v2-b950c3468b10c05f1b8aebc0666be238_r.jpg">

你可能感兴趣的:(android 自定义字体(转载))