主题包---源码解析,思路分析

kotlin vs java

主题包我想大家项目中都有用到,而且谷歌官方也给出了内置的暗黑模式的处理,但是今天要讲的是动态配置主题包,可配置图片,背景色,字体等等......

1. 项目需求

  • 根据配置更改不同的主题色,比如背景色,字体颜色。

2. 源码流程解析

切入点:分析源码我们可以知道Hook you can supply that is called when inflating from a LayoutInflater.You can use this to customize the tag names available in your XML layout files.(当我们inflate解析布局的时候,我们可以通过此类实现hook每一个控件,并且自定义设置他们的属性)大致翻译应该是这个意思吧,哈哈哈,英语不好。那我们知道要想改变控件属性,必须和这个接口相关,而这个接口只有个方法,方法名称和参数也可以看得出来加载布局的时候每一个控件都会被此方法拦截到。然而他还有一个继承类Factory2可以看出Factory2其实是Factory的扩展。

  public interface Factory {
        /**
         * Hook you can supply that is called when inflating from a LayoutInflater.
         * You can use this to customize the tag names available in your XML
         * layout files.
         *
         * <p>
         * Note that it is good practice to prefix these custom names with your
         * package (i.e., com.coolcompany.apps) to avoid conflicts with system
         * names.
         *
         * @param name Tag name to be inflated.
         * @param context The context the view is being created in.
         * @param attrs Inflation attributes as specified in XML file.
         *
         * @return View Newly created view. Return null for the default
         *         behavior.
         */
        public View onCreateView(String name, Context context, AttributeSet attrs);
    }

接下来我们分析setContentView(layoutId)的时候加载布局页面的一系列操作,是怎么样把xml布局加载到手机上可见的。

进入源码我们可以发现以下代码:

1. 分析界面加载控件过程,找寻和我们切入点相关的地方
 @Override
    public void setContentView(int resId) {
        //获取主题TypeArray,判断当前window设置,比如是否全屏,主题模式等等,最终创建出窗口decorView,包括状态栏,navagation栏,content区域,整个窗口布局的规划
       //这也就解释了为什么我们设置状态栏一体化之类的需要在setContentView之前做。
        ensureSubDecor();
        //窗口获取我们的根布局android.R.id.content,也就是开发者布局的区域
        ViewGroup contentParent = mSubDecor.findViewById(android.R.id.content);
        //清空操作,就想你每次吃饭的时候都要再擦一下筷子一样,明明洗过了。(我是这样理解的哈)
        contentParent.removeAllViews();
        //解析我们的xml布局
        LayoutInflater.from(mContext).inflate(resId, contentParent);
        //屏幕刷新回调
        mAppCompatWindowCallback.getWrapped().onContentChanged();
    }

接下来LayoutInflater.from(mContext).inflate(resId, contentParent);分析:

  1. 首先,这段代码会把我们的resId文件转换成XmlResourceParser解析类
  2. 并且,XmlResourceParser类会去读取我们xml布局的节点
  3. 再次,把读取出来的每个节点的信息name,attributes通过createViewFromTag()方法创建出每一个控件对象(比如:name:TextView, attributes:{android:layout_width,android:layout_height,android:text,android:textColor}等),分析只对一般情况解析,不解析特殊情况,特殊标签(比如:mergeinclude等)
  4. 接下来我们就可以在上面方法中看到我们的切入点:
    //此方法四步拦截,Factory2,Factory,mPrivateFactory,LayoutInflater自己处理
    View createViewFromTag(View parent, String name, Context context, AttributeSet attrs,
            boolean ignoreThemeAttr) {
           // ............
            View view;
          //可以看出,我们创建view的过程会在这里被Factory和Factory2拦截
            if (mFactory2 != null) {
                view = mFactory2.onCreateView(parent, name, context, attrs);
            } else if (mFactory != null) {
                view = mFactory.onCreateView(name, context, attrs);
            } else {
                view = null;
            }

            if (view == null && mPrivateFactory != null) {
                view = mPrivateFactory.onCreateView(parent, name, context, attrs);
            }

            if (view == null) {
                final Object lastContext = mConstructorArgs[0];
                mConstructorArgs[0] = context;
                try {
                    if (-1 == name.indexOf('.')) {
                        view = onCreateView(parent, name, attrs);
                    } else {
                        view = createView(name, null, attrs);
                    }
                } finally {
                    mConstructorArgs[0] = lastContext;
                }
            }
            return view;
        //..............

分析到这里就够了,因为我们已经找到了我们的切入点和view创建的关系,他能够在每个控件创建的过程中拦截到他们的所有属性,接下来我们对界面加载的分析到此为止。

2. 找寻Factory和Factory2的实例化具体位置
  1. 显然,Factory2是在serContentView()之前实例化的,所以就针对serContentView()之前的系统操作查看源码,最终我们再super.onCreate()中找到这样代码:
AppCompatDelegateImpl.java
  @Override
    public void installViewFactory() {
        LayoutInflater layoutInflater = LayoutInflater.from(mContext);
        //从这里可以看到,如果我们的Factory为null,系统会给我创建设置一个,这个设置的就是this,也就是说AppCompatDelegateImpl会拦截到我们所要的所有的控件
        if (layoutInflater.getFactory() == null) {
            LayoutInflaterCompat.setFactory2(layoutInflater, this);
        } else {
            if (!(layoutInflater.getFactory2() instanceof AppCompatDelegateImpl)) {
                Log.i(TAG, "The Activity's LayoutInflater already has a Factory installed"
                        + " so we can not install AppCompat's");
            }
        }
    }

那接下来我们看看AppCompatDelegateImpl.java拦截获取到我们所有控件后做了什么:

@Override
    public View createView(View parent, final String name, @NonNull Context context,
            @NonNull AttributeSet attrs) {
        if (mAppCompatViewInflater == null) {
            TypedArray a = mContext.obtainStyledAttributes(R.styleable.AppCompatTheme);
            String viewInflaterClassName =
                    a.getString(R.styleable.AppCompatTheme_viewInflaterClass);
            if ((viewInflaterClassName == null)
                    || AppCompatViewInflater.class.getName().equals(viewInflaterClassName)) {
                // Either default class name or set explicitly to null. In both cases
                // create the base inflater (no reflection)
                mAppCompatViewInflater = new AppCompatViewInflater();
            } else {
                try {
                    Class<?> viewInflaterClass = Class.forName(viewInflaterClassName);
                    mAppCompatViewInflater =
                            (AppCompatViewInflater) viewInflaterClass.getDeclaredConstructor()
                                    .newInstance();
                } catch (Throwable t) {
                    Log.i(TAG, "Failed to instantiate custom view inflater "
                            + viewInflaterClassName + ". Falling back to default.", t);
                    mAppCompatViewInflater = new AppCompatViewInflater();
                }
            }
        }

        boolean inheritContext = false;
        if (IS_PRE_LOLLIPOP) {
            inheritContext = (attrs instanceof XmlPullParser)
                    // If we have a XmlPullParser, we can detect where we are in the layout
                    ? ((XmlPullParser) attrs).getDepth() > 1
                    // Otherwise we have to use the old heuristic
                    : shouldInheritContext((ViewParent) parent);
        }

        return mAppCompatViewInflater.createView(parent, name, context, attrs, inheritContext,
                IS_PRE_LOLLIPOP, /* Only read android:theme pre-L (L+ handles this anyway) */
                true, /* Read read app:theme as a fallback at all times for legacy reasons */
                VectorEnabledTintResources.shouldBeUsed() /* Only tint wrap the context if enabled */
        );
    }

可以看到代码不多,做了一件事儿,就是兼容AppCompat主题,创建AppCompatViewInflater对象,然后又把创建view的任务交给它处理。不难理解,这整个操作就是做我们的兼容包里面的控件处理,也就是说当我们用兼容控件的时候也正常创建我们的控件(比如:AppCompatButton,Button)。解析来在进入源码,就可以看到我们兼容的时候的兼容控件和我们原生控件的对应创建关系:

final View createView(View parent, final String name, @NonNull Context context,
            @NonNull AttributeSet attrs, boolean inheritContext,
            boolean readAndroidTheme, boolean readAppTheme, boolean wrapContext) {
        final Context originalContext = context;

        // We can emulate Lollipop's android:theme attribute propagating down the view hierarchy
        // by using the parent's context
        if (inheritContext && parent != null) {
            context = parent.getContext();
        }
        if (readAndroidTheme || readAppTheme) {
            // We then apply the theme on the context, if specified
            context = themifyContext(context, attrs, readAndroidTheme, readAppTheme);
        }
        if (wrapContext) {
            context = TintContextWrapper.wrap(context);
        }

        View view = null;

        // We need to 'inject' our tint aware Views in place of the standard framework versions
        switch (name) {
            case "TextView":
                view = createTextView(context, attrs);
                verifyNotNull(view, name);
                break;
            case "ImageView":
                view = createImageView(context, attrs);
                verifyNotNull(view, name);
                break;
            case "Button":
                view = createButton(context, attrs);
                verifyNotNull(view, name);
                break;
            case "EditText":
                view = createEditText(context, attrs);
                verifyNotNull(view, name);
                break;
            case "Spinner":
                view = createSpinner(context, attrs);
                verifyNotNull(view, name);
                break;
            case "ImageButton":
                view = createImageButton(context, attrs);
                verifyNotNull(view, name);
                break;
            case "CheckBox":
                view = createCheckBox(context, attrs);
                verifyNotNull(view, name);
                break;
            case "RadioButton":
                view = createRadioButton(context, attrs);
                verifyNotNull(view, name);
                break;
            case "CheckedTextView":
                view = createCheckedTextView(context, attrs);
                verifyNotNull(view, name);
                break;
            case "AutoCompleteTextView":
                view = createAutoCompleteTextView(context, attrs);
                verifyNotNull(view, name);
                break;
            case "MultiAutoCompleteTextView":
                view = createMultiAutoCompleteTextView(context, attrs);
                verifyNotNull(view, name);
                break;
            case "RatingBar":
                view = createRatingBar(context, attrs);
                verifyNotNull(view, name);
                break;
            case "SeekBar":
                view = createSeekBar(context, attrs);
                verifyNotNull(view, name);
                break;
            case "ToggleButton":
                view = createToggleButton(context, attrs);
                verifyNotNull(view, name);
                break;
            default:
                view = createView(context, name, attrs);
        }

        if (view == null && originalContext != context) {
            // If the original context does not equal our themed context, then we need to manually
            // inflate it using the name so that android:theme takes effect.
            view = createViewFromTag(context, name, attrs);
        }

        if (view != null) {
            // If we have created a view, check its android:onClick
            checkOnClickListener(view, attrs);
        }

        return view;
    }

到这里我们梳理一下思路,我们在view创建过程中会经过Factory的拦截操作,拦截之后兼容包的处理方式是创建兼容的AppcompatInflater,然后交由它去根据name对应创建兼容的控件。回头看看AppcompatInflaterpublic的,我们的activity实现了Factory2接口.......
思路:我们根据上面分析,我们的思路就有了,我们可以模范系统对兼容包的处理方式,自定义CustomInflater继承AppcompatInflater,拦截每个控件,通过name匹配,创建我们自己的自定义控件CustomButton(当然我们的自定义控件也应该是继承系统的控件,比如CustomButton继承AppcompatButton,直接继承兼容包的就可以了,因为我们也要为它做兼容,此处要注意一点,我们的继承父类最好是相关的控件的最终子类,比如:「Button--->AppcomatButton--->MaterialButton---CustomButton」,只有在继承体系里面的才能被支持,否知的话不支持。)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343