我们使用 Intent 的额外 DS 跨活动传递值。如果我需要从 a 传递值Activity
to Application
,最好的方法是什么?
我用过SharedPreferences
,但是我看不到正在设置的值。
我用了
PreferenceManager.getDefaultSharedPreferences(this).edit().putString(CURRENT_AIRLINE_IATA_CODE, AIRLINE_CODE);
为了阅读它,我使用了
PreferenceManager.getDefaultSharedPreferences(this).getString(CURRENT_AIRLINE_IATA_CODE, null);
Android 文档指出 SharedPreferences 不能用于跨不同进程传递信息Note: currently this class does not support use across multiple processes. This will be added later.
http://developer.android.com/reference/android/content/SharedPreferences.html