Android QQ皮肤制作 apk之间资源共享

在android系统中,apk之间可以相互读取数据。但是必须具备以下条件

1.有同样的签名(*.keystoe)

2.在AndroidManifest.xml文件中配置的android:sharedUserId属性值相同

3.二个apk运行在同一个进程中.

主程序及读取的apk中AndroidManifest.xml中配置

        android:sharedUserId="com.why.android"

访问资源的方法

        Context mContext = this.createPackageContext("com.why.android",Context.CONTEXT_IGNORE_SECURITY); 

        Drawable image = mContext.getResources().getDrawable(R.drawable.icon);

    Button mButton = (Button)findViewById(R.id.btn);

    mButton.setBackgroundDrawable(image);

利用这原理,咱们可以为应用程序制作像QQ那样的皮肤。

你可能感兴趣的:(android,qq,image,Security,button)