所以不同APK(用户)间互相访问数据默认是禁止的.
但是它也提供了2种APK间共享数据的形式:
1. Share Preference. / Content Provider* 在2个APK的AndroidManifest.xml 配置User ID:
android:sharedUserId="com.exam">
这个"com.exam" 就是user id, 然后packagename APK A就是上面的内容,
APK B可能是
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.demo.b1"
android:sharedUserId="com.exam">
2.1访问共享数据库
获取APK A的上下文
public class MainActivity extends Activity
{
Context friendContext;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView image = (ImageView)findViewById(R.id.image_view);
try
{
friendContext = this.createPackageContext("com.example.liadsa", Context.CONTEXT_IGNORE_SECURITY);
image.setImageDrawable(friendContext.getResources().getDrawable(R.drawable.pause));
}
catch (NameNotFoundException e)
{
e.printStackTrace();
}
}
}
通过这个context就可以直接打开数据库
2.2程序制作皮肤
定义相同的资源名
image.setImageDrawable(friendContext.getResources().getDrawable(R.drawable.pause));