Android开发--更换字体

作者: T9的第三个三角 | 来源:发表于2017-01-05 11:43 被阅读6947次
  • 开发中,经常遇到需要更换字体格式,设计妹子为了让UI更美,设置了很多让人着(tong)迷(ku)的字体,但是蓝瘦归蓝瘦,还是得撸起袖子开干。
  • Android系统中,默认提供三种字体:"sans", "serif", "monospace"

如果设置字体为系统字体之一,在XML中,直接设置字体格式:
1、sans

  <TextView
            Android:id="@+id/sans"
            Android:text="sans"
            Android:textSize="10sp"
            Android:typeface="sans" />```
2、monospace

<TextView
Android:id="@+id/monospace"
Android:text="monospace"
Android:textSize="10sp"
Android:typeface="monospace" />```

3、serif

  <TextView
            Android:id="@+id/serif"
            Android:text="serif"
            Android:textSize="10sp"
            Android:typeface="serif" />```


- ###### 使用自定义字体
首先要引入自定义的字体文件,例如引入Roboto-Light字体,将Roboto-Light.ttf放入assets\fonts\目录下

![引入字体文件.png](http:https://img.haomeiwen.com/i2789715/fab431d67c790407.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  1、一般情况下,只针对部分字体,或者某个界面的少量字体进行修改
在XML布局中,不做任何修改:

<TextView
Android:id="@+id/textview "
Android:text="custom"
Android:textSize="10sp" />```
在代码中:
得到TextView对象

TextView textView =(TextView)findViewById(R.id.textview);```
创建Typeface对象

Typeface typeFace =Typeface.createFromAsset(getAssets(),"fonts/Roboto-Light.ttf");```
设置字体

textView.setTypeface(typeFace);```
简单的三步,搞定。

2、上面是针对部分字体修改,但有时设计为了App的整体美观或者App产品本身的定位,绝大部分甚至所有字体,都需要使用自定义的字体。
如果再使用上面的方法逐一修改,对开发者来说无异于噩耗,而且,这种毫无意义的重复劳动,也不符合我们能懒就懒得程序员风格
那就想点省事的方法吧:
(1)、获取系统字体,并替换

public final class FontsOverride {

public static void setDefaultFont(Context context,
        String staticTypefaceFieldName, String fontAssetName) {
    final Typeface regular = Typeface.createFromAsset(context.getAssets(),
            fontAssetName);
    replaceFont(staticTypefaceFieldName, regular);
}

protected static void replaceFont(String staticTypefaceFieldName,
        final Typeface newTypeface) {
    try {
        final Field staticField = Typeface.class
                .getDeclaredField(staticTypefaceFieldName);
        staticField.setAccessible(true);
        staticField.set(null, newTypeface);
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        e.printStackTrace();
    }
}

}```
在Application类中替换系统默认字体

public final class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        FontsOverride.setDefaultFont(this, "DEFAULT", "Roboto-Light.ttf");
    }
}```

(2)、上面是全局替换,但更多时候开发中只需要替换一部分,甚至有时想在XML中设置字体:
自定义CustomTextView对象

public class CustomTextView extends TextView {

public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}

public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}

public CustomTextView(Context context) {
super(context);
init();
}

private void init() {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "Roboto-Light.ttf");
setTypeface(tf);
}
}```
XML中使用自定义的CustomTextView

  <com.packagename.CustomTextView
                    android:id="@+id/custom"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="Custom TextView"
                    android:textappearance="?android:attr/textAppearanceLarge"/>```

总结:如果使用Android系统提供字体,直接在XML布局中设置TextView的typeface;
          如果使用自定义字体,则根据具体需求,选择对应的方法

相关文章

  • Android开发--更换字体

    开发中,经常遇到需要更换字体格式,设计妹子为了让UI更美,设置了很多让人着(tong)迷(ku)的字体,但是蓝瘦归...

  • android更换字体

    android更换字体 最近在研究android端字体替换需求,发现还是有很多方式来替换字体。 一,前言 Andr...

  • Android更换字体

    首先需要去找一些想使用的 ttf 文件, 去1001 Free Fonts或者Google Fonts找,或者让U...

  • Android更换字体

    Typeface typefaceLatoLight = Typeface.createFromAsset(con...

  • Android学习笔记—更换字体

    准备字体资源 1.下载常用字体*.ttf,只能使用小写英文字母2.切换到Project视图,在app/src/ma...

  • Android App更换字体调研

    最近各大项目都要换字体,所以调研了一下 首先,是换字体的方法:如果是TextView的话,一个是style中的fo...

  • Android动态替换View

    Android动态替换View 在android 在开发中有这样的需求,某一个view需要更换,如果逐步更换效率太...

  • iOS添加字体

    iOS开发中会遇到想要更换字体的需求,当系统中没有想要使用的字体时,就需要自己添加字体文件。这里记录一下添加字体文...

  • Kotlin基础

    前言 2017年谷歌IO大会宣布,将Android开发的官方语言更换为Kotlin,作为Android开发有必要对...

  • Android相机适配代码封装

    在Android项目中,少不了需要更换头像这样一个小需求。然而一个看似简单的更换头像操作,对于Android开发者...

网友评论

  • bunnypu:全局更换字体那个,没有起作用啊

本文标题: Android开发--更换字体

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