I'm trying to access the SharedPreferences in a non-activity class but I always get this error cannot resolve getSharedPreferences(java.lang.String, int)
. But when I use the getSharedPreferences in normal activity class I don't get this error.
错误代码:
SharedPreferences prefs = getSharedPreferences("MyPrefs", context.MODE_PRIVATE);
解决办法:
SharedPreferences prefs = context.getSharedPreferences("MyPrefs", context.MODE_PRIVATE);
或许在activity中不需要context,但是在fragement中需要getContext