apk之间可以相互读取数据。
注意以下条件:
1.有同样的签名(app.keystoe)
2.在AndroidManifest.xml文件中配置的android:sharedUserId属性值相同
3.两个apk运行在同一个进程中.
主程序及读取的apk中AndroidManifest.xml中配置
android:sharedUserId="com.why.android"
访问资源的方法
Context mContext = this.createPackageContext("com.demo.android",Context.CONTEXT_IGNORE_SECURITY);
Drawable image = mContext.getResources().getDrawable(R.drawable.icon);
Button mButton = (Button)findViewById(R.id.btn);
mButton.setBackgroundDrawable(image);