Slide 18
Slide 18 text
sharedUserId
// AΞϓϦ(com.os.operando.application.interoperability.sample)
getSharedPreferences("master_app", MODE_PRIVATE).edit().putInt("int", 1).apply();
// BΞϓϦ(com.example.shareduserid_app)
// ͕औಘͰ͖Δ
try {
Context c = createPackageContext(“com.os.operando.application.interoperability.sample",
CONTEXT_RESTRICTED);
int i = c.getSharedPreferences(“master_app”, MODE_PRIVATE).getInt("int", 0);
Log.d(TAG, i + ""); // 1
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}