原文地址http://www.apkbus.com/forum.php?mod=viewthread&tid=149034&highlight=%E7%9A%AE%E8%82%A4

上次写完应用切换皮肤功能实现的时候,有网友提了些问题。我觉得上次说的还不够详细吧。现在接着再写详细点。
这次再在布局里增加了三个按钮图片的设置和一个字体颜色的设置。
1.其实上次只是讲到了切换皮肤时,只是替换了图片资源,其实连布局都可以切换。当然布局的切换要是apk类型的皮肤包才行。
首先我们写好3个布局,把三个按钮放在界面的上中下。
1)按钮在上面

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/main"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".MainActivity"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin" >
  11. <TextView
  12. android:id="@+id/text"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_centerInParent="true"
  16. android:text="点击界面到设置皮肤界面"
  17. android:textColor="#000000"
  18. android:textSize="20sp" >
  19. </TextView>
  20. <LinearLayout
  21. android:layout_alignParentTop="true"
  22. android:id="@+id/buttonLinear"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content" >
  25. <LinearLayout
  26. android:layout_width="0.0dip"
  27. android:layout_height="fill_parent"
  28. android:layout_weight="1.0"
  29. android:gravity="center" >
  30. <ImageButton
  31. android:id="@+id/prev"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:scaleType="center"
  35. android:src="@drawable/prev" />
  36. </LinearLayout>
  37. <LinearLayout
  38. android:layout_width="0.0dip"
  39. android:layout_height="fill_parent"
  40. android:layout_weight="1.0"
  41. android:gravity="center" >
  42. <ImageButton
  43. android:id="@+id/play"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:scaleType="center"
  47. android:src="@drawable/play" />
  48. </LinearLayout>
  49. <LinearLayout
  50. android:layout_width="0.0dip"
  51. android:layout_height="fill_parent"
  52. android:layout_weight="1.0"
  53. android:gravity="center" >
  54. <ImageButton
  55. android:id="@+id/next"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:scaleType="center"
  59. android:src="@drawable/next" />
  60. </LinearLayout>
  61. </LinearLayout>
  62. </RelativeLayout>

复制代码

2)按钮在中间:

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/main"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".MainActivity"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin" >
  11. <TextView
  12. android:id="@+id/text"
  13. android:layout_alignParentBottom="true"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_centerInParent="true"
  17. android:text="点击界面到设置皮肤界面"
  18. android:textColor="#000000"
  19. android:textSize="20sp" >
  20. </TextView>
  21. <LinearLayout
  22. android:layout_centerInParent="true"
  23. android:id="@+id/buttonLinear"
  24. android:layout_width="fill_parent"
  25. android:layout_height="wrap_content" >
  26. <LinearLayout
  27. android:layout_width="0.0dip"
  28. android:layout_height="fill_parent"
  29. android:layout_weight="1.0"
  30. android:gravity="center" >
  31. <ImageButton
  32. android:id="@+id/prev"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:scaleType="center"
  36. android:src="@drawable/prev" />
  37. </LinearLayout>
  38. <LinearLayout
  39. android:layout_width="0.0dip"
  40. android:layout_height="fill_parent"
  41. android:layout_weight="1.0"
  42. android:gravity="center" >
  43. <ImageButton
  44. android:id="@+id/play"
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:scaleType="center"
  48. android:src="@drawable/play" />
  49. </LinearLayout>
  50. <LinearLayout
  51. android:layout_width="0.0dip"
  52. android:layout_height="fill_parent"
  53. android:layout_weight="1.0"
  54. android:gravity="center" >
  55. <ImageButton
  56. android:id="@+id/next"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:scaleType="center"
  60. android:src="@drawable/next" />
  61. </LinearLayout>
  62. </LinearLayout>
  63. </RelativeLayout>

复制代码

3)按钮在下面:

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/main"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".MainActivity"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin" >
  11. <TextView
  12. android:id="@+id/text"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_centerInParent="true"
  16. android:text="点击界面到设置皮肤界面"
  17. android:textColor="#000000"
  18. android:textSize="20sp" >
  19. </TextView>
  20. <LinearLayout
  21. android:layout_alignParentBottom="true"
  22. android:id="@+id/buttonLinear"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content" >
  25. <LinearLayout
  26. android:layout_width="0.0dip"
  27. android:layout_height="fill_parent"
  28. android:layout_weight="1.0"
  29. android:gravity="center" >
  30. <ImageButton
  31. android:id="@+id/prev"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:scaleType="center"
  35. android:src="@drawable/prev" />
  36. </LinearLayout>
  37. <LinearLayout
  38. android:layout_width="0.0dip"
  39. android:layout_height="fill_parent"
  40. android:layout_weight="1.0"
  41. android:gravity="center" >
  42. <ImageButton
  43. android:id="@+id/play"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:scaleType="center"
  47. android:src="@drawable/play" />
  48. </LinearLayout>
  49. <LinearLayout
  50. android:layout_width="0.0dip"
  51. android:layout_height="fill_parent"
  52. android:layout_weight="1.0"
  53. android:gravity="center" >
  54. <ImageButton
  55. android:id="@+id/next"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:scaleType="center"
  59. android:src="@drawable/next" />
  60. </LinearLayout>
  61. </LinearLayout>
  62. </RelativeLayout>

复制代码

这些布局分别放在不同的apk包里。命名要相同,这里都叫activity_main.xml。
然后在BaseActivity里根据不同的皮肤上下文。就可以创建出不同的布局文件。这样就实现了同一个界面,在不同皮肤里。图片不同,布局也不同。
根据不同皮肤上下文,创建view的代码如下:

  1. public static  View createViewFromResource(Context context,String layoutName,ViewGroup root, boolean  attachToRoot) {
  2. View resultView =null;
  3. try{
  4. Context ct =getSkinContext(context);
  5. int resid = ct.getResources().getIdentifier(layoutName, "layout", ct.getPackageName());
  6. if(resid != 0){
  7. resultView= currentInflater.inflate(resid, root, attachToRoot);
  8. }else{
  9. resid = context.getResources().getIdentifier(layoutName, "layout",context.getPackageName());
  10. resultView= defalutInflater.inflate(resid, root, attachToRoot);
  11. }
  12. }catch(Exception e){
  13. e.printStackTrace();
  14. }
  15. return resultView;
  16. }

复制代码

2.另外一个是字体颜色的设置。因为不同的皮肤下,假如字体颜色不跟着皮肤变化的话,看着会非常的别扭。
我们只需要把字体颜色放在一个xml里。不同的皮肤,解析不同的xml得到颜色,就可以实现字体颜色根据皮肤变化了。
这部分代码如下:

  1. public static int getColorByName(String name){
  2. int res = -1;
  3. try {
  4. String xmlFileName ="skin_color.xml";
  5. Document doc  =  getDocumentByFile(xmlFileName);
  6. if(doc != null){
  7. String value = getColorByName(doc,name);
  8. res=Color.parseColor(value);
  9. }
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. }
  13. return res;
  14. }
  15. private synchronized static Document getDocumentByFile(String xmlFileName) throws Exception{
  16. String path = Constant.SKIN_DIR+"skin_color.xml";
  17. File file = new File(path);
  18. if(file.exists())
  19. {
  20. InputStream inputStream = null;
  21. try {
  22. inputStream = new FileInputStream(file);
  23. return getDocument(inputStream);
  24. } catch (Exception e) {
  25. e.printStackTrace();
  26. }
  27. }
  28. return getDocument(MyApplication.getApplication().getAssets().open(xmlFileName));
  29. }
  30. private static String getColorByName(Document doc,String name){
  31. NodeList nodeList= doc.getElementsByTagName(name);
  32. String res =null;
  33. if(nodeList != null){
  34. int len = nodeList.getLength();
  35. if(len > 0){
  36. Element el = (Element)nodeList.item(0);
  37. res = el.getAttribute("value");
  38. }else{
  39. }
  40. }
  41. return res;
  42. }

复制代码

下面放上切换皮肤的效果图。无图无真相嘛。
<ignore_js_op><ignore_js_op><ignore_js_op><ignore_js_op><ignore_js_op><ignore_js_op>

最后是源码,想要源码,就回复一下吧,反正又不会怀孕的。

本帖隐藏的内容

<ignore_js_op> 2.0.zip (6.5 MB, 下载次数: 117)

Android应用切换皮肤功能实现(二)的更多相关文章

  1. Android应用切换皮肤功能实现

    原文地址:http://www.eoeandroid.com/thread-318159-1-1.html 现在大多数android应用都支持切换皮肤的功能.比如千千静听,墨迹天气等等.本文介绍两种切 ...

  2. Android实现换肤功能(二)

    前两天写的上章关于换肤的功能获得了很好的反响,今天为大家介绍另一种方式.今天实现的策略也是网友建议的,然后我自己去写了个demo,大家自己评估下相比第一种方式的优势和劣势在哪里. 简单介绍下关于第一种 ...

  3. android如何切换皮肤

    1.先定义attr文件 <?xml version="1.0" encoding="utf-8"?> <resources> <a ...

  4. [原][osg][osgEarth]EarthManipulator关于oe漫游器的handle部分解读以及修改(仿照谷歌,修改oe漫游器中focal(视角切换)功能 续 二)

    bool EarthManipulator::handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa) ...

  5. Android 实现切换主题皮肤功能(类似于众多app中的 夜间模式,主题包等)

    首先来个最简单的一键切换主题功能,就做个白天和晚上的主题好了. 先看我们的styles文件: <resources> <!-- Base application theme. --& ...

  6. Android 打造自己的个性化应用(二):应用程序内置资源实现换肤功能

    通过应用程序内置资源实现换肤,典型的应用为QQ空间中换肤的实现. 应用场景为: 应用一般不大,且页面较少,风格相对简单,一般只用实现部分资源或者只用实现背景的更换. 此种换肤方式实现的思路: 1. 把 ...

  7. jQuery实现无刷新切换主题皮肤功能

    主题皮肤切换功能在很多网站和系统中应用,用户可以根据此功能设置自己喜欢的主题颜色风格,增强了用户体验.本文将围绕如何使用jQuery实现点击无刷新切换主题皮肤功能. 查看演示DEMO:https:// ...

  8. Android群英传笔记——第十二章:Android5.X 新特性详解,Material Design UI的新体验

    Android群英传笔记--第十二章:Android5.X 新特性详解,Material Design UI的新体验 第十一章为什么不写,因为我很早之前就已经写过了,有需要的可以去看 Android高 ...

  9. Android基础——项目的文件结构(二)

    Android基础--项目的文件结构(二) AndroidManifest.xml文件分析 [注]此项目文件结构仅限于Android Studio下的Android项目!!! 在一个Android项目 ...

随机推荐

  1. (转)深入理解 __doPostBack

    在我的随笔<Page,你是怎样处理回发事件的?>中曾提出一个疑问,如何得到引起页面PostBack的控件?通过阅读Page类的源码,误打误撞,无意中看到了__EVENTTARGET和__E ...

  2. hashtable 和dictionary

    hashtable 通过 key 和value 进行访问 不是 通过 索引访问 对类型没有强制规定 ,所以类型危险 容易出错 无效的key时 会返回空 dictionary 与hashtable 相区 ...

  3. web并发访问的问题

    一般的webapplication,可能会遇到这样的问题,你可以这样模拟:用浏览器开一个窗口,选中一条记录,编辑之,但是先不要保存,新开一个浏览器窗口,找到这条记录,删除之,然后再回到第一个窗口点击保 ...

  4. BZOJ 3926 && ZJOI 2015 诸神眷顾的幻想乡 (广义后缀自动机)

    3926: [Zjoi2015]诸神眷顾的幻想乡 Time Limit: 10 Sec Memory Limit: 512 MB Description 幽香是全幻想乡里最受人欢迎的萌妹子,这天,是幽 ...

  5. Combination Sum,Combination Sum II,Combination Sum III

    39. Combination Sum Given a set of candidate numbers (C) and a target number (T), find all unique co ...

  6. IE CSS Bug 系列

    1.[IE CSS Bug系列]IE6&IE7图片链接无效 <!doctype html> <html> <head> <meta charset=& ...

  7. 判断display为隐藏还是显示及获取css

    <html lang="en"> <head> <title>判断display为隐藏还是显示及获取css</title> < ...

  8. 字典:当索引不好用时2 - 零基础入门学习Python026

    字典:当索引不好用时2 让编程改变世界 Change the world by program 上节课我们学习到在一些情况下,比序列更实用的映射类型:字典.我们知道字典也有个关键符号就是大括号(也叫花 ...

  9. 根据文字计算Label的尺寸

    CGSize size = [self.username.text boundingRectWithSize:(CGSize){130,20} options:NSStringDrawingUsesL ...

  10. linux下snprintf和sprinf很少被提及的区别

    函数原型:int snprintf(char *dest, size_t size, const char *fmt, ...);函数说明: snprintf函数中的第二个参数,size的解释:siz ...