Calligraphy Custom fonts in Android an OK way. Are you fed up of Custom Views to set fonts? Or traversing the ViewTree to find TextViews? Yeah me too. Getting started Dependency Include the dependency Download (.aar) as well as the ViewPump library:
前言
上一篇文章,笔者主要讲述了DecorView以及ViewRootImpl相关的作用,这里回顾一下上一章所说的内容:DecorView是视图的顶级View,我们添加的布局文件是它的一个子布局,而ViewRootImpl则负责渲染视图,它调用了一个performTraveals方法使得ViewTree开始三大工作流程,然后使得View展现在我们面前。本篇文章主要内容是:详细讲述View的测量(Measure)流程,主要以源码的形式呈现,源码均取自Android API 21.
从ViewRoo