I can not save using SharedPreferences
, Android Studio accuses methods do not exist.
By the official SharedPreferences documentation has the 2 forms, as needed from where find the value:
Calling any context ( getSharedPreferences()
):
Context context = getActivity();
SharedPreferences sharedPref = context.getSharedPreferences(
getString(R.string.preference_file_key), Context.MODE_PRIVATE);
Calling a certain context ( getPreferences()
):
SharedPreferences sharedPref =
getActivity().getPreferences(Context.MODE_PRIVATE);
But regardless of which one I try to use, none is recognized.
I tested in extended class of AppCompatActivity
, and AsyncTask
(which is where I need to use).