【Android】全局自定义字体的实现

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

一、修改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替换。

四、补充

通过以上的操作,已经完成了大多数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(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(R.id.alertTitle)
    title?.typeface = typeface
    return dlg
}

使用方式:

    val myTypeface = getTypeface()
    AlertDialog.Builder(this)
        .setTitle("标题")
        .setMessage("内容")
        .setPositiveButton("确定") { _, _ ->
            // do sth
        }
        .setNegativeButton("取消", null)
        .show(myTypeface)

3. 代码

修改全局字体函数的完整代码:

    /**
     * 通过反射修改[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的字体。

最后

您的点赞收藏就是对我最大的鼓励! 欢迎关注我,分享Android干货,交流Android技术。 对文章有何见解,或者有何技术问题,欢迎在评论区一起留言讨论!最后给大家分享一些Android相关的视频教程,感兴趣的朋友可以去看看。

  • 【2021 最新版】Android studio全套教程+Android(安卓)开发入门到精通(项目实战篇)_哔哩哔哩_bilibili

  • 【2021最新版】Kotlin语言教程——Kotlin入门到精通全系列_哔哩哔哩_bilibili

  • 【Android源码解析】Android中高级架构进阶学习——百大框架源码解析Retrofit/OkHttp/Glide/RxJava/EventBus...._哔哩哔哩_bilibili

  • Android流行框架零基础入门到精通全套教程/热修复/Glide/插件化/Retrofit/OKHTTP/Gson/组件化/Jetpack/IOC/高德地图_哔哩哔哩_bilibili

  • Android开发进阶学习—设计思想解读开源框架 · 已更新至104集(持续更新中~)_哔哩哔哩_bilibili

  • 【实战教学】Android开发—jetpack入门到精通_哔哩哔哩_bilibili

  • 价值100W+Android实战项目大全/高级UI/灵动的锦鲤/QQ空间热修复/插件化框架/组件化框架设计/网络访问框架/RXJava/IOC/MVVM/NDK_哔哩哔哩_bilibili

  • Android音视频开发:音视频基础知识到直播推流实战系列教程_哔哩哔哩_bilibili

  • Android项目实战-从0开始手把手实现组件化路由SDK项目实战_哔哩哔哩_bilibili

  • 【Android开发教程】一节课解剖Retrofit源码内核_哔哩哔哩_bilibili

本文转自 https://juejin.cn/post/7043383979470225415,如有侵权,请联系删除。

你可能感兴趣的:(【Android】全局自定义字体的实现)