当前位置:   article > 正文

Android主题换肤实现原理与Demo_android换肤原理

android换肤原理

随着手机应用的成熟发展,市面上的应用已不在以简单的实现功能为目标了,它们反而会更加注重用户体验。我们常说的换肤(主题)功能——针对用户的喜好来提供一个可选的主题也是提高用户体验的方式之一。换肤功能不仅提高了用户体验并且还具有一定商业价值。许多大厂的app如QQ、网易云音乐都具有换肤的功能。那么我们来聊一聊Android的换肤功能如何实现。从原理出发,我们需要了解两点:

换肤的本质?
皮肤是什么?
1.换肤的本质
     通过观察许多主流的app可以发现,它们的皮肤(主题)大多数都是要下载的,不可能把这些五花八门的样式全都都放在apk文件上,那样的话应用会很大。所以皮肤是通过网络下载的(当然可以有几套默认的皮肤),下载完之后点击一款皮肤就可以对整个应用的样式进行替换了,替换的是什么呢?当然就是资源文件啦,再简单一点说,就是去替换界面上的字体、颜色、背景、图片这些东西。 既然是替换资源文件,不管我们有多少个apk皮肤包,我们所定义的资源名称肯定要相同才行,不然无法做一个对应的关系,好比我们要替换drawable文件夹下的一张名为ic_bg.png的图片,那么新的图片也要这样去命名才能够正确替换。皮肤替换的过程就是加载皮肤包里面的资源文件,然后重新对每个view进行setXXX()这类操作。

2.皮肤是什么
     上面说了,换肤的本质就是去替换资源文件。我们知道,Android应用程序由代码和资源组成。所以皮肤其实就是一个仅包含资源的apk文件。

     通过以上两点,可以对Android的换肤功能有一个大体的了解,这里我们可以做一个小结:

皮肤是一个apk文件
换肤三部曲:下载皮肤文件 ->获取资源 ->替换
     抛砖引玉一番之后,下面我们来具体实现这个过程。 我们创建一个Demo来模拟换肤的实现流程,这个Demo很简单,先来看一下最终实现的效果(水印请忽略)。

换肤Demo
我们要实现的效果是,点击右边的按钮应用蓝色的皮肤,点击左边的按钮恢复到默认的皮肤,这个界面的布局如下:

  1. <RelativeLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:background="@drawable/ic_bg"
  7. android:layout_height="match_parent"
  8. tools:context=".MainActivity">
  9. <TextView
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:textSize="20sp"
  13. android:gravity="center"
  14. android:lineSpacingExtra="7dp"
  15. android:textColor="@color/mainText"
  16. android:text="Kotlin is now an official language on Android. It's expressive, concise, and powerful. Best of all, it's interoperable with our existing Android languages and runtime."
  17. app:layout_constraintBottom_toBottomOf="parent"
  18. app:layout_constraintLeft_toLeftOf="parent"
  19. app:layout_constraintRight_toRightOf="parent"
  20. app:layout_constraintTop_toTopOf="parent"/>
  21. <Button
  22. android:id="@+id/btn_default"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:background="@color/mainButton"
  26. android:layout_alignParentBottom="true"
  27. android:layout_marginStart="8dp"
  28. android:text="默认"/>
  29. <Button
  30. android:id="@+id/btn_blue"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_alignParentBottom="true"
  34. android:background="@color/mainButton"
  35. android:layout_marginEnd="8dp"
  36. android:layout_alignParentEnd="true"
  37. android:text="闷骚蓝"/>
  38. </RelativeLayout>


其中ic.bg就是那张白色的背景图,引用的颜色资源在color.xml中定义。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <color name="mainText">#181717</color>
  4. <color name="mainButton">#d3e4db</color>
  5. </resources>


1.创建一个皮肤包
     看到上面的gif图便可知道,这里替换掉了根布局的背景、TextView的字体颜色和Button的背景颜色。接下来我们就创建这个“闷骚蓝”的皮肤。创建一个Android工程,命名为blue-skin。

蓝色皮肤

 

这个工程,不需要创建任何的java类,只需要添加一张蓝色的背景图,命名为ic.bg,在color.xml中添加两个相同名称的颜色值。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <color name="mainText">#181717</color>
  4. <color name="mainButton">#d3e4db</color>
  5. </resources>


就是这么简单!直接选择Build apk生成皮肤包。生成皮肤包后,我们将扩展名更改成skin(也可以改成其他的),这样做的目的是为了防止系统的安装程序进行安装(毕竟啥都没)。然后将皮肤包拷贝到sd卡的根目录中去。这个过程就模拟了换肤过程中下载皮肤包到本地的过程,实际开发中应是通过网络下载,这里简化了这个步骤。

2.获取皮肤包的资源
为了方便,可以定义一个类似SkinManager的类来控制皮肤的加载、替换等过程,加载皮肤包资源的代码如下:

 

  1. public void loadSkin(String skinPath) {
  2. if (skinPath== null)
  3. return;
  4. new LoadTask().execute(skinPath);
  5. }
  1. class LoadTask extends AsyncTask<String, Void, Resources> {
  2. @Override
  3. protected Resources doInBackground(String... paths) {
  4. try {
  5. if (paths.length == 1) {
  6. String skinPkgPath = paths[0];
  7. File file = new File(skinPkgPath);
  8. if (!file.exists()) {
  9. return null;
  10. }
  11. PackageManager mPm = context.getPackageManager();
  12. PackageInfo mInfo = mPm.getPackageArchiveInfo(skinPkgPath, PackageManager
  13. .GET_ACTIVITIES);
  14. skinPackageName = mInfo.packageName;
  15. AssetManager assetManager = AssetManager.class.newInstance();
  16. Method addAssetPath = assetManager.getClass().getMethod("addAssetPath",
  17. String.class);
  18. addAssetPath.invoke(assetManager, skinPkgPath);
  19. Resources superRes = context.getResources();
  20. Resources skinResource = new Resources(assetManager, superRes
  21. .getDisplayMetrics(), superRes.getConfiguration());
  22. saveSkinPath(skinPkgPath);
  23. return skinResource;
  24. }
  25. } catch (Exception e) {
  26. return null;
  27. }
  28. return null;
  29. }
  30. @Override
  31. protected void onPostExecute(Resources resources) {
  32. super.onPostExecute(resources);
  33. mSkinResources = resources;
  34. if (mSkinResources != null) {
  35. isExternalSkin = true;
  36. notifySkinUpdate();
  37. }
  38. }
  39. }


41
loadSkin()*的内容比较简单,开启一个AsyncTask去加载皮肤包,这里面的参数输入的是皮肤包的全路径。我们知道Android程序的资源分为两大类,assert和resource,分别对应api中的AssertManager和Resource类,而AssertManager又在ResourcesImpl中,ResourcesImpl是Resource的一个具体实现类。通常在我们自己的工程中,可以通过调用context对象的getResource()方法获取Resource的示例,这是因为在应用启动的过程中就为我们创建了这个Resource对象。那如果我们要获取皮肤包的资源,就要去构造这个Resource对象了,Resource的构造方法如下:

 

  1. public Resources(AssetManager assets, DisplayMetrics metrics, Configuration config) {
  2. this(null);
  3. mResourcesImpl = new ResourcesImpl(assets, metrics, config, new DisplayAdjustments());
  4. }


Resource的构造方法中需要传入三个参数,重点看AssetManager ,由于AssetManager 的大多数api都是@hide的,包括public的构造方法,所以我们只能通过反射去创建一个AssetManager 对象,并通过反射去调它的addAssetPath 方法把皮肤包路径传进去。这一步是必须的,它可以让assetManager包含特定的PackageName的资源信息。Resource后面的两个参数是关于一些配置信息,影响不大,可以直接使用当前工程的Resource对象的配置。创建好Resource之后,就表示已经获取到皮肤包的资源了。

3.替换资源
    既然我们已经获取到了Resource对象了,那么替换资源的工作就变得很简单了,但是,如何通知每个界面都进行替换呢?这一步还是比较简单的,通过观察者模式即可实现。在BaseActivity中去设置一个监听器,当加载完皮肤包资源的时候就可以去通知界面替换了。主要的问题是如何为每个view重新设置资源,如果去遍历整个view树再去找需要换肤的view显然是不太现实的,所以比较合适的做法就是,在创建每个View的时候,就把符合换肤条件的view收集起来,然后在需要换肤的时候再去遍历这个集合进行替换,简单分析一下这个过程。

首先,自定义一个创建view的工厂,收集需要换肤的view。

LayoutInflater.Factory

对于LayoutInflater的使用大家比较熟悉,调用LayoutInflater对象的*inflate()*方法即可将一个xml文件转成一个View对象。事实上,我们在activity中调用setContextView()去加载布局也是用到LayoutInflater这个类。

 

  1. @Override
  2. public void setContentView(int resId) {
  3. //省略...
  4. ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
  5. contentParent.removeAllViews();
  6. LayoutInflater.from(mContext).inflate(resId, contentParent);
  7. //省略...
  8. }


这个创建view的过程是系统默认实现的,我们完全可以提供一个Factory去创建view,LayoutInflater.Factory是LayoutInflater内部的一个接口,当创建view的时候,就会调用Factory中的onCreateView方法:

public View onCreateView(String name, Context context, AttributeSet attrs);


明白这一点,我们就可以去实现创建一个Factory,在onCreateView中去收集需要换肤的view。

Activity是实现了LayoutInflater.Factory的,所以也可以直接去重写BaseActivity的oncreateView方法来收集需要换肤的view。

这里先定义两个Bean类,SkinAttr是关于某个属性的信息。

  1. public class SkinAttr {
  2. private String attrName; //属性名(例如:background、textColor)
  3. private String attrType; //属性类型(例如:drawable、color)
  4. private int resId; //资源id值(例如:123)
  5. private String resName; //资源名称(例如:ic_bg)
  6. public SkinAttr(String attrName, String attrType, String resName,int resId) {
  7. this.attrName = attrName;
  8. this.attrType = attrType;
  9. this.resId = resId;
  10. this.resName = resName;
  11. }
  12. /**
  13. * API
  14. * @return
  15. */
  16. public String getAttrName() {
  17. return attrName;
  18. }
  19. public void setAttrName(String attrName) {
  20. this.attrName = attrName;
  21. }
  22. public String getAttrType() {
  23. return attrType;
  24. }
  25. public void setAttrType(String attrType) {
  26. this.attrType = attrType;
  27. }
  28. public int getResId() {
  29. return resId;
  30. }
  31. public void setResId(int resId) {
  32. this.resId = resId;
  33. }
  34. public String getResName() {
  35. return resName;
  36. }
  37. public void setResName(String resName) {
  38. this.resName = resName;
  39. }
  40. }


定义一个SkinItem类将view和它的属性联系起来:

  1. public class SkinItem {
  2. private View view;
  3. private List<SkinAttr> attrs;
  4. public SkinItem(View view, List<SkinAttr> attrs) {
  5. this.view = view;
  6. this.attrs = attrs;
  7. }
  8. public void apply() {
  9. if (view == null || attrs == null)
  10. return;
  11. for (SkinAttr attr : attrs) {
  12. String attrName = attr.getAttrName();
  13. String attrType = attr.getAttrType();
  14. String resName = attr.getResName();
  15. int resId = attr.getResId();
  16. if ("background".equals(attrName)) {
  17. if ("color".equals(attrType)) {
  18. view.setBackgroundColor(SkinManager.getInstance().getColor(resName,resId));
  19. } else if ("drawable".equals(attrType)) {
  20. view.setBackground(SkinManager.getInstance().getDrawable(resName,resId));
  21. }
  22. } else if ("textColor".equals(attrName)) {
  23. if (view instanceof TextView && "color".equals(attrType)) {
  24. ((TextView) view).setTextColor(SkinManager.getInstance().getColor(resName,resId));
  25. }
  26. }
  27. }
  28. }
  29. }


最后我们创建MySkinFactory类并实现LayoutInflater.Factory来收集这些需要换肤的view的信息 :

  1. public class MySkinFactory implements LayoutInflater.Factory {
  2. private List<SkinItem> skinItems = new ArrayList<>();
  3. @Override
  4. public View onCreateView(String name, Context context, AttributeSet attrs) {
  5. View view = createView(name,context,attrs);
  6. if (view!=null){
  7. collectViewAttr(view,context,attrs);
  8. }
  9. return view;
  10. }
  11. private View createView(String name, Context context, AttributeSet attrs) {
  12. View view = null;
  13. try {
  14. if (-1 == name.indexOf('.')){ //不带".",说明是系统的View
  15. if ("View".equals(name)) {
  16. view = LayoutInflater.from(context).createView(name, "android.view.", attrs);
  17. }
  18. if (view == null) {
  19. view = LayoutInflater.from(context).createView(name, "android.widget.", attrs);
  20. }
  21. if (view == null) {
  22. view = LayoutInflater.from(context).createView(name, "android.webkit.", attrs);
  23. }
  24. }else { //带".",说明是自定义的View
  25. view = LayoutInflater.from(context).createView(name, null, attrs);
  26. }
  27. } catch (Exception e) {
  28. view = null;
  29. }
  30. return view;
  31. }
  32. private void collectViewAttr(View view,Context context, AttributeSet attrs) {
  33. List<SkinAttr> skinAttrs = new ArrayList<>();
  34. int attCount = attrs.getAttributeCount();
  35. for (int i = 0;i<attCount;++i){
  36. String attributeName = attrs.getAttributeName(i);
  37. String attributeValue = attrs.getAttributeValue(i);
  38. if (isSupportedAttr(attributeName)){
  39. if (attributeValue.startsWith("@")){ //必须是引用
  40. int resId = Integer.parseInt(attributeValue.substring(1));
  41. String resName = context.getResources().getResourceEntryName(resId);
  42. String attrType = context.getResources().getResourceTypeName(resId);
  43. skinAttrs.add(new SkinAttr(attributeName,attrType,resName,resId));
  44. SkinItem skinItem = new SkinItem(view, skinAttrs);
  45. if (SkinManager.getInstance().isExternalSkin()){
  46. skinItem.apply();
  47. }
  48. skinItems.add(skinItem);
  49. }
  50. }
  51. }
  52. }
  53. private boolean isSupportedAttr(String attributeName){
  54. return "background".equals(attributeName) || "textColor".equals(attributeName);
  55. }
  56. public void apply(){
  57. for (SkinItem item : skinItems) {
  58. item.apply();
  59. }
  60. }
  61. }


在collectViewAttr()方法中去遍历这个view的属性名和属性值,如果属性名是background或者是textColor我们就认为这个view是需要换肤的(具体由什么来确定根据需要),如果这个属性的属性值是引用类型,那么我们就把这个view以及它对应的属性、属性值收集起来。创建完Factory之后,在BaseActivity中去设置:

 

  1. protected void onCreate(@Nullable Bundle savedInstanceState) {
  2. mSkinFactory = new MySkinFactory();
  3. getLayoutInflater().setFactory(mSkinFactory);
  4. super.onCreate(savedInstanceState);
  5. SkinManager.getInstance().addSkinUpdateListener(this);
  6. }


设置Factory的代码要放在 super.onCreate(savedInstanceState) 之前,上面还有一句代码是设置皮肤更新的监听器,实现如下:

  1. @Override
  2. public void onSkinUpdate() {
  3. mSkinFactory.apply();
  4. }


调用的是mSkinFactory的apply()方法:

 

  1. public void apply() {
  2. if (view == null || attrs == null)
  3. return;
  4. for (SkinAttr attr : attrs) {
  5. String attrName = attr.getAttrName();
  6. String attrType = attr.getAttrType();
  7. String resName = attr.getResName();
  8. int resId = attr.getResId();
  9. if ("background".equals(attrName)) {
  10. if ("color".equals(attrType)) {
  11. view.setBackgroundColor(SkinManager.getInstance().getColor(resName,resId));
  12. } else if ("drawable".equals(attrType)) {
  13. view.setBackground(SkinManager.getInstance().getDrawable(resName,resId));
  14. }
  15. } else if ("textColor".equals(attrName)) {
  16. if (view instanceof TextView && "color".equals(attrType)) {
  17. ((TextView) view).setTextColor(SkinManager.getInstance().getColor(resName,resId));
  18. }
  19. }
  20. }
  21. }


走到这一步就可以到清楚换肤的本质了,不过就是调用我们玩的行云流水的一系列setXXX()操作罢了。SkinManager中的getColor方法如下:

 

  1. public int getColor(String resName,int resId) {
  2. int originColor = context.getResources().getColor(resId);
  3. if(mSkinResources == null || !isExternalSkin){
  4. return originColor;
  5. }
  6. int newResId = mSkinResources.getIdentifier(resName, "color", skinPackageName);
  7. int newColor;
  8. try{
  9. newColor = mSkinResources.getColor(newResId);
  10. }catch(Resources.NotFoundException e){
  11. e.printStackTrace();
  12. return originColor;
  13. }
  14. return newColor;
  15. }


主要是使用Resource的getIdentifier()方法去获得某个颜色的资源id值(不是颜色值),注意这里的资源id就是皮肤包上的资源id了,然后再通过这个资源id值去获取对应的颜色值。如果没有找到,则返回默认的颜色值。getDrawable()方法和getColor()方法类型,这里不再赘述,文末会附上源代码。做到这里,我们就可以任意切换不同的皮肤包了,那如果要恢复默认的皮肤呢?没有问题,上代码:

 

  1. public void restoreDefaultTheme(){
  2. SPUtil.put(context, KEY, "");
  3. isExternalSkin= false;
  4. mSkinResources = null;
  5. notifySkinUpdate();
  6. }


将SkinResources置空即可。好了,我们来到主界面,为这两个按钮加上监听器,来测试一下:

  1. public class MainActivity extends BaseActivity implements View.OnClickListener {
  2. private Button btnDefault;
  3. private Button btnBlue;
  4. private String skinPath; //皮肤包路径
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_main);
  9. btnDefault = findViewById(R.id.btn_default);
  10. btnBlue = findViewById(R.id.btn_blue);
  11. btnDefault.setOnClickListener(this);
  12. btnBlue.setOnClickListener(this);
  13. skinPath = Environment.getExternalStorageDirectory().getAbsolutePath() +
  14. File.separator + "blue-skin.skin";
  15. }
  16. @Override
  17. public void onClick(View v) {
  18. switch (v.getId()) {
  19. case R.id.btn_default:
  20. SkinManager.getInstance().restoreDefaultTheme();
  21. break;
  22. case R.id.btn_blue:
  23. SkinManager.getInstance().loadSkin(skinPath);
  24. break;
  25. }
  26. }
  27. }


效果和上面的gif图是一致的。还有一个比较重要的地方,用户在下一次打开这个app应用的应是他最后一次选择的皮肤,不可能每次都要他选吧?那样会崩溃的。所以,在每次调用loadSkin() 加载皮肤包成功后,需要将此皮肤路径保存起来, 待下一次应用启动时就去加载此路径的皮肤,这样做的体验效果就会比较好些。这个过程可以放在Application的onCreate()去进行。这部分代码就不放了,源码中有。

总结
    单从原理和实现手段来讲,Android的换肤功能还是非常简单的,但是本示例并没有给出一个通用的框架结构,只是针对换肤功能来进行说明,github上有不少优秀的换肤框架均可参考,本示例也是参考了Android-Skin-Loader这个框架所写,继续放一些参考博文:

1.Android换肤原理和Android-Skin-Loader框架解析

2.Android 在线换肤方案总结分享

Demo源码地址: GitHub - ouchangxin/DynamicSkinDemo: Android动态切换皮肤demo


原文链接:https://blog.csdn.net/weixin_38261570/article/details/82079540

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/86930?site
推荐阅读
相关标签
  

闽ICP备14008679号