skin-loader框架的換膚是通過插件化的形式替換資源文件,實(shí)現(xiàn)換膚效果。好處是可以在線更新皮膚換膚
創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為紅塔企業(yè)提供專業(yè)的網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì),紅塔網(wǎng)站改版等技術(shù)服務(wù)。擁有10余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
android-skin-loader源碼
Demo樣例
流程
整個(gè)框架大概的流程是加載皮膚包,找到被標(biāo)記的控件,通過自定義的Factory工程過濾掉其他控件,使用皮膚包中的資源文件更新被標(biāo)記的ui。
使用操作
1、導(dǎo)入android-skin-loader框架包
androidStudio File->new->import Module選擇android-skin-loader
項(xiàng)目右鍵->open Module Setting->app中加載依賴android-skin-loader庫
2、在MyApplication 初始化框架
SkinManager.getInstance().init(this); SkinManager.getInstance().load();
3、需要換膚的activity需要繼承skin-loader中的BaseActivity
需要換膚的控件添加skin:enable=”true”,控件xml添加命名空間xmlns:skin=”http://schemas.android.com/android/skin”
4、準(zhǔn)備需要替換的color或drawable同名的資源文件包將其打包,重命名以.skin結(jié)尾
本地測試可以使用adb命令將.skin包放在sdcard
adb push 文件目錄/test.skin /sdcard
樣例代碼
xml文件,使用databinding,不知道的自行百度
<?xml version="1.0" encoding="utf-8"?>
public class SkinChangeAct extends BaseActivity{ private ActivitySkinchangeBinding binding; //skin包名 private String SKIN_NAME = "test.skin"; //skin皮膚包的路徑 private String SKIN_DIR = Environment.getExternalStorageDirectory()+ File.separator+SKIN_NAME; @Override public void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); binding = DataBindingUtil.setContentView(this, R.layout.activity_skinchange); //更換皮膚 binding.btnChangeSkin.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { File skin = new File(SKIN_DIR); if(skin == null || !skin.exists()){ Toast.makeText(getApplicationContext(), "請檢查" + SKIN_DIR + "是否存在", Toast.LENGTH_SHORT).show(); return; } SkinManager.getInstance().load(skin.getAbsolutePath(), new ILoaderListener() { @Override public void onStart() { System.out.println("start"); } @Override public void onSuccess() { System.out.println("onSuccess"); } @Override public void onFailed() { System.out.println("onFailed"); } }); } }); //恢復(fù)默認(rèn)皮膚 binding.btnDefault.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { SkinManager.getInstance().restoreDefaultTheme(); } }); //動(dòng)態(tài)加載控件 binding.btnAdd.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { dynamicAddTextView(); } }); } /**動(dòng)態(tài)添加textview*/ private void dynamicAddTextView() { TextView textView = new TextView(this); RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); params.addRule(RelativeLayout.CENTER_IN_PARENT); textView.setLayoutParams(params); textView.setTextColor(SkinManager.getInstance().getColor(R.color.text_color)); textView.setText("hellohello"); textView.setTextSize(28); //將動(dòng)態(tài)添加的布局也更換皮膚,否則之前添加的不能更改 ListmDanamicAttr = new ArrayList (); mDanamicAttr.add(new DynamicAttr(AttrFactory.TEXT_COLOR,R.color.text_color)); dynamicAddView(textView,mDanamicAttr); binding.addLayout.addView(textView); } }
資源文件color.xml
<?xml version="1.0" encoding="utf-8"?>#3F51B5 #303F9F #FF4081 #ff0000 #00ff00
skin皮膚包中的資源文件color.xml
<?xml version="1.0" encoding="utf-8"?>#3F51B5 #303F9F #FF4081 #ffff00 #00ffff
對比一下,只是更改了數(shù)值,名字相同。
框架迭代,增加功能
android-skin-loader框架是沒有對于src屬性的修改,案例中使用imageView模擬了src的更改。
在AttrFactory中增加對于src的支持
public class AttrFactory { public static final String BACKGROUND = "background"; public static final String TEXT_COLOR = "textColor"; public static final String LIST_SELECTOR = "listSelector"; public static final String DIVIDER = "divider"; //增加src屬性 public static final String SRC="src"; public static SkinAttr get(String attrName, int attrValueRefId, String attrValueRefName, String typeName){ SkinAttr mSkinAttr = null; System.out.println("attrName="+attrName); if(BACKGROUND.equals(attrName)){ mSkinAttr = new BackgroundAttr(); }else if(TEXT_COLOR.equals(attrName)){ mSkinAttr = new TextColorAttr(); }else if(LIST_SELECTOR.equals(attrName)){ mSkinAttr = new ListSelectorAttr(); }else if(DIVIDER.equals(attrName)){ mSkinAttr = new DividerAttr(); }else if(SRC.equals(attrName)){ //自定義加載src mSkinAttr =new SrcAttr(); }else{ return null; } mSkinAttr.attrName = attrName; mSkinAttr.attrValueRefId = attrValueRefId; mSkinAttr.attrValueRefName = attrValueRefName; mSkinAttr.attrValueTypeName = typeName; return mSkinAttr; } /** * Check whether the attribute is supported * @param attrName * @return true : supported
* false: not supported */ public static boolean isSupportedAttr(String attrName){ if(BACKGROUND.equals(attrName)){ return true; } if(TEXT_COLOR.equals(attrName)){ return true; } if(LIST_SELECTOR.equals(attrName)){ return true; } if(DIVIDER.equals(attrName)){ return true; } //支持src if(SRC.equals(attrName)){ return true; } return false; } }
srcAttr繼承SkinAttr定義加載src
public class SrcAttr extends SkinAttr{ @Override public void apply(View view) { if(view instanceof ImageView){ ImageView imageView = (ImageView) view; if(RES_TYPE_NAME_COLOR.equals(attrValueTypeName)){ imageView.setImageResource(SkinManager.getInstance().getColor(attrValueRefId)); }else if(RES_TYPE_NAME_DRAWABLE.equals(attrValueTypeName)){ Drawable bg = SkinManager.getInstance().getDrawable(attrValueRefId); imageView.setImageDrawable(bg); } } } }
各種控件的支持都可以自己添加。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。