在androID的项目开发中,都会遇到后期功能拓展增强与主程序代码变更的现实矛盾,也就是程序的灵活度。 由于linux平台的安全机制,再加上dalvik的特殊机制,各种权限壁垒,使得开发一个灵活多变的程序,变得比较困难,不像pc平台下那么容易。
这里实际上可以借鉴传统软件中扩展程序的方法: 也就是插件的实现. 如目前所有的浏览器,比如我们使用的eclipse,以及很多优秀的软件,都使用了此种方式. 这样轻松实现了软件的功能扩展,而升级功能时只用更新对应插件, 而不是需要更新整个应用,降低了程序的耦合度.
而在AndroID中的实现思路,即为将一个较大的APK,分离为一个主程序的APK,和其他各种较小的APK.
典型的应用为手机QQ换肤的实现方式:
QQ的皮肤是一个无界面APK应用,这个皮肤应用中的资源和主程序的资源命名一致,通过主程序和皮肤程序共享进程实现主程序对皮肤程序中资源的访问,在程序运行时通过代码显示指定皮肤资源,缺点是在主程序中每个activity要增加复杂的使用哪种皮肤逻辑
本例实现效果如下:
下面分析下具体思路:
androID下,默认的情况是,每个apk相互独立的,基本上每个应用都是一个dalvik虚拟机,都有一个uID,再配合上linux本身的权限机制,使得apk互通很难直接进行。但作为一个独立应用的集成,不管多少个apk,都可以并为一个单独的dalvik虚拟机,直观的反映给开发人员就是在shell下列出进程,那几个apk同时加载后,会一个进程存在。
可以在清单文件中加入如下配置:
androID:sharedUserID="com.tony.test"
androID:sharedUserID是指共用一个uID,也就是,凡是这个属性相同的工程,都会共用同一个uID,这样,权限壁垒就消除了,dalvik也会融合为一个,可以测试一下,写几个工程,没有这个属性和有这个属性的情况下,同时运行,在列出当前进程,就直观的说明了。
下面还是用代码说明,一共分为两部分. 主程序 Re_Skin和皮肤程序Re_Skin1
首先是主应用程序代码:
1. 清单文件AndroIDManifest.xml:
<?xml version="1.0" enCoding="utf-8"?> <manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.tony.reskin" androID:versionCode="1" androID:versionname="1.0" <span >androID:sharedUserID="com.tony.skin"</span>> <uses-sdk androID:minSdkVersion="7" /> <application androID:icon="@drawable/icon" androID:label="@string/app_name"> <activity androID:name="com.tony.reskin.Re_SkinActivity" androID:label="@string/app_name"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
2. 布局文件:
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:ID="@+ID/layout" > <TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="@string/hello" /> <button androID:text="Set" androID:ID="@+ID/button1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"></button> </linearLayout>
3. Re_SkinActivity;(主要的皮肤更换逻辑实现类)
@H_403_49@package com.tony.reskin; import androID.app.Activity; import androID.content.Context; import androID.content.pm.PackageManager.nameNotFoundException; import androID.os.Bundle; import androID.os.Handler; import androID.vIEw.VIEw; import androID.vIEw.VIEw.OnClickListener; import androID.Widget.button; import androID.Widget.linearLayout; public class Re_SkinActivity extends Activity { private linearLayout layout; private button btnSet; <span >private Context frIEndContext;</span> /** Called when the activity is first created. */ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); btnSet = (button)findVIEwByID(R.ID.button1); layout = (linearLayout)findVIEwByID(R.ID.layout); layout.setBackgroundResource(R.drawable.bg); try { <span >frIEndContext = createPackageContext("com.tony.reskin1",Context.CONTEXT_IGnorE_Security);</span> } catch (nameNotFoundException e) { e.printstacktrace(); } btnSet.setonClickListener(new OnClickListener() { @OverrIDe public voID onClick(VIEw v) { new Handler().post(new Runnable() { @OverrIDe public voID run() { layout.setBackgroundDrawable(<span >frIEndContext.getResources().getDrawable(R.drawable.bg</span>)); } }); } }); } }皮肤应用中不需要界面显示
这个皮肤应用中的资源和主程序的资源命名一致即可.
清单文件:
<?xml version="1.0" enCoding="utf-8"?> <manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.tony.reskin1" androID:versionCode="1" androID:versionname="1.0" <span >androID:sharedUserID="com.tony.skin"</span>> <uses-sdk androID:minSdkVersion="7" /> <application androID:icon="@drawable/icon" androID:label="@string/app_name"> <activity androID:name=".Re_Skin1Activity" androID:label="@string/app_name"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>总结
以上是内存溢出为你收集整理的Android应用开发中实现apk皮肤文件换肤的思路分析全部内容,希望文章能够帮你解决Android应用开发中实现apk皮肤文件换肤的思路分析所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)