Android_动态换皮肤功能

效果:

可修改字体类型,字体颜色,背景颜色,背景图案.等等
可配合服务端,提供在线下载皮肤功能,下载完成即时生效替换资源.

效果图.gif

实现思路:

1.采样: 找到需要替换的所有view控件,记录保存起来
2.替换皮肤资源: 利用AssetManager.加载皮肤资源,生成Resources,在给view设置资源属性的时候,使用皮肤资源Resources来设置

实现原理:

皮肤包其实是一个apk,在更换皮肤的时候,其实是使用皮肤包里面的资源,来替换本地app的资源文件.

1.AssetManager加载皮肤包资源

AssetManager里面有一个hide的方法addAssetPath,通过反射调用这个方法可以给AssetManager设置我们皮肤资源的path,来加载皮肤资源

/**
     * Add an additional set of assets to the asset manager.  This can be
     * either a directory or ZIP file.  Not for use by applications.  Returns
     * the cookie of the added asset, or 0 on failure.
     * {@hide}
     */
    public final int addAssetPath(String path) {
        return  addAssetPathInternal(path, false);
    }
AssetManager assetManager = AssetManager.class.newInstance();
Method method = assetManager.getClass().getMethod("addAssetPath", String.class);
method.setAccessible(true);
//调用addAssetPath方法,传入皮肤资源路径
method.invoke(assetManager,path);
//得到本app的application的resources
Resources resources = application.getResources();
//根据本app的resources的配置创建皮肤Resources
Resources skinResource = new Resources(assetManager, resources.getDisplayMetrics(),
                        resources.getConfiguration());
//获取外部Apk(皮肤包) 包信息
PackageManager mPm = application.getPackageManager();
PackageInfo info = mPm.getPackageArchiveInfo(path, PackageManager.GET_ACTIVITIES);
String packageName = info.packageName;
2.利用LayoutInflater采样,找到需要换肤的view

查看系统setContentView(int resId)源码发现,view的创建是通过LayoutInflater来创建的,而LayoutInflater在创建view的过程中,我们可以通过给LayoutInflater.setFactory2(),来设置我们自己的Factory2,然后拿到需要替换皮肤的View

mLayoutInflater.inflate(layoutResID, mContentParent);
public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) {
        final Resources res = getContext().getResources();
        //得到xml解析器
        final XmlResourceParser parser = res.getLayout(resource);
        try {
            return inflate(parser, root, attachToRoot);
        } finally {
            parser.close();
        }
    }
//...省略
//调用createViewFromTag来创建xml对应的View
final View temp = createViewFromTag(root, name, inflaterContext, attrs);

View createViewFromTag(View parent, String name, Context context, AttributeSet attrs,
            boolean ignoreThemeAttr) {

        ......
        try {
            View view;
            //如果有mFactory2 ,就调用该工厂来创建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;
}

LayoutInflater.setFactory2(),回调到Factory的onCreateView()方法中,模仿系统源码,实现创建view,并且拿到这个view,来给它设置资源,实现换皮肤效果

仿写android系统源码,利用classloader来创建view

//name 传入view的全路径,如果是android SDK提供的view,需要我们拼接路径处理
//如果是自定义控件,或者控件在xml使用的时候带 '.'的,就直接传入该完整路径
private View createView(String name, Context context, AttributeSet attrs) {
        Constructor<? extends View> constructor = sConstructorMap.get(name);
        if(constructor == null) {
            try {
                //加载类的全路径,得到class
                Class<? extends View> aClass = context.getClassLoader().loadClass(name).asSubclass(View.class);
                //得到构造方法,参数:mConstructorSignature是方法的参数类型.class
                constructor = aClass.getConstructor(mConstructorSignature);
                sConstructorMap.put(name, constructor);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        if(null != constructor){
            try {
                return constructor.newInstance(context,attrs);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }
3.过滤需要换皮肤的view,并且设置属性

拿到上面创建的view,按照我们定义的条件,找到符合条件,需要替换皮肤的控件,并且设置属性值

 private static final List<String> mAttributes = new ArrayList<>();
    static {
        //过滤的条件,有以下属性的view才考虑换肤
        mAttributes.add("background");
        mAttributes.add("src");
        mAttributes.add("textColor");
        mAttributes.add("tabTextColor");
        mAttributes.add("drawableLeft");
        mAttributes.add("drawableTop");
        mAttributes.add("drawableRight");
        mAttributes.add("drawableBottom");
    }

switch (skinPair.attributeName) {
    //设置background
    case "background": 
        Object background = SkinResources.getInstance().getBackground(skinPair.resId);
        //Color
        if (background instanceof Integer) {
             view.setBackgroundColor((Integer) background);
        } else {
             ViewCompat.setBackground(view, (Drawable) background);
        }
        break;
    //设置textColor
    case "textColor":
        ((TextView) view).setTextColor(SkinResources.getInstance().getColorStateList
                                (skinPair.resId));
        break;
    case "drawableLeft":
        left = SkinResources.getInstance().getDrawable(skinPair.resId);
        break;
    case "drawableTop":
        top = SkinResources.getInstance().getDrawable(skinPair.resId);
    ......
    //按照我们需要设置的属性,并且赋值..
    default:
        break;
  }
if (null != left || null != right || null != top || null != bottom) {
    ((TextView) view).setCompoundDrawablesWithIntrinsicBounds(left, top, right,
                            bottom);
}

4.还原

使用APP默认的Resources来加载资源,并且给换皮肤的view设置回APP默认的Resources下的资源即可

注意:

1.皮肤包其实是一个只有资源文件的空壳apk
2.app的资源文件的名字,必须和apk的资源文件的名字一样

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

推荐阅读更多精彩内容