When you establish a shared preference such as below...
public static final String PREFS_HI = "MyPrefsFile";
Can you access it from other activities just like you would normally do?
SharedPreferences settings = getSharedPreferences(PREFS_HI, 0);
Or is there something unique that you must do to access the preferences?