由于网上大部分教程在新版本系统中已经失效,特此记录。

一、修改TextView字体

假设现在有一个字体文件 msyh.ttf ;对于某个TextView来说,如果想修改它的字体,可以简单的使用如下代码:

val tv = findView()
val tf = Typeface.createFromAsset(assets, "msyh.ttf")
tv.typeface = tf 

这样就可以将单个TextView设置为对应字体。如果想要实现全局修改字体,则需要通过修改Factory2的方式来实现。

二、Factory2

Factory2用于根据xml标签创建实例对象的过程。

众所周知,在初始化布局的时候,会调用LayoutInflater.inflate方法,而其会尝试使用LayoutInflater.tryCreateView方法来创建View对象。该方法如下:

    public final View tryCreateView(@Nullable View parent, @NonNull String name,
        @NonNull Context context, @NonNull AttributeSet attrs) {
        // ……
        View view;
        if (mFactory2 != null) {
            view = mFactory2.onCreateView(parent, name, context, attrs);
        } else if (mFactory != null) {
            view = mFactory.onCreateView(name, context, attrs);
        } else {
            view = null;
        // ……
        return view;

可以看到,其会优先调用mFactory2.onCreateView来创建对象。所以,如果可以替换LayoutInflater.mFactory2这个对象,就可以操纵布局的创建过程。

那么,mFactory2对象又是从何而来的呢?通过打断点Debug,可以追踪到,系统默认的Factory2是在onCreate方法中设置的,而其也就是AppCompatActivity.mDelegate对象。

三、自定义Factory2

由于已经知道系统默认的Factory2就是AppCompatActivity.mDelegate,则可自定义Factory2如下:

    val myFactory2 = object : LayoutInflater.Factory2 {
        override fun onCreateView(parent: View?, name: String, context: Context, attrs: AttributeSet): View? {
            val delegate = activity.delegate
            val view = delegate.createView(parent, name, context, attrs)
            if (view is TextView) {
                view.typeface = typeface
            return view
        override fun onCreateView(name: String, context: Context, attrs: AttributeSet): View? {
            return onCreateView(null, name, context, attrs)

然后通过反射将LayoutInflater.mFactory2替换即可。

    val inflater = LayoutInflater.from(activity)
    try {
        val clazz = LayoutInflater::class.java
        val factoryField = clazz.getDeclaredField("mFactory")
        val factory2Field = clazz.getDeclaredField("mFactory2")
        factoryField.isAccessible = true
        factory2Field.isAccessible = true
        factoryField.set(inflater, myFactory2)
        factory2Field.set(inflater, myFactory2)
    } catch (e: Exception) {
        e.printStackTrace()

需要特别注意的是,以上的代码需要在Activity.setContentView方法之前调用。因为控件从xml解析为对应类型的对象是在setContentView中完成的,要在此之前将LayoutInflater.mFactory2替换。

四、完整代码

* 通过反射修改[LayoutInflater.mFactory]和[LayoutInflater.mFactory2]字段设置全局字体。 * 这个函数需要在[AppCompatActivity.setContentView]之前调用,否则无效。 fun setGlobalTypefaceInner(activity: AppCompatActivity, typeface: Typeface) { val myFactory2 = object : LayoutInflater.Factory2 { override fun onCreateView(parent: View?, name: String, context: Context, attrs: AttributeSet): View? { val delegate = activity.delegate val view = delegate.createView(parent, name, context, attrs) if (view is TextView) { view.typeface = typeface return view override fun onCreateView(name: String, context: Context, attrs: AttributeSet): View? { return onCreateView(null, name, context, attrs) val inflater = LayoutInflater.from(activity) try { val clazz = LayoutInflater::class.java val factoryField = clazz.getDeclaredField("mFactory") val factory2Field = clazz.getDeclaredField("mFactory2") factoryField.isAccessible = true factory2Field.isAccessible = true factoryField.set(inflater, myFactory2) factory2Field.set(inflater, myFactory2) } catch (e: Exception) { e.printStackTrace()

在Activity的onCreate中,setContentView之前调用这个方法,则可以修改当前Activity中所有TextView的字体。

通过以上的操作,已经完成了大多数TextView字体的修改。还有一些需要手动修改的补充如下。

1. Actionbar title

Actionbar的标题无法通过上述方式修改字体,解决方案如下:

查找id为R.id.action_bar的控件,该控件为当前Actionbar。再遍历其子控件,修改其中类型为TextView的字体。

    // 在Activity中调用
    private fun setTitleTypeface() {
        val actionBarId = R.id.action_bar
        val actionbar = findViewById<ViewGroup>(actionBarId)
        for (view in actionbar.children) {
            if (view is TextView) {
                // titleView
                view.typeface = Typefaces.getCurrent(this)

2. Alertdialog的标题

Alertdialog的内容修改字体正常,但是标题没有被修改。解决方案如下:

查找Alertdialog中id为R.id.alertTitle的子控件,这个控件就是标题TextView;然后对其设置字体。

可以增加扩展函数fun AlertDialog.Builder.show(typeface: Typeface),使用该函数显示Dialog。

// 定义扩展函数
fun AlertDialog.Builder.show(typeface: Typeface): AlertDialog {
    val dlg = show()
    val title = dlg.findViewById<TextView>(R.id.alertTitle)
    title?.typeface = typeface
    return dlg

使用方式:

    val myTypeface = getTypeface()
    AlertDialog.Builder(this)
        .setTitle("标题")
        .setMessage("内容")
        .setPositiveButton("确定") { _, _ ->
            // do sth
        .setNegativeButton("取消", null)
        .show(myTypeface)
复制代码
分类:
Android