Android : Getting error “cannot resolve getSharedPreferences(java.lang.String, int)”

2018-01-24 00:02:21

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

  • 2021-11-03 19:59:58

    Android 11 adb无线调试使用方法

    ​Android 11无线调试不需要再像以前一样,先插上usb线,输入命令来启用无线调试,再进行无线连接了。Android 11系统设置开发者选项中自带了无线调试,今天亲自测试了