I need to use shared preferences in multiple fragment
files (cant use activity files) I have to store several string lines.
How do I initialize shared preferences
in my fragments? How do I write / read to it?
Do I need to initialize it in my main activity or do I have to initialize it in my fragment activity files?
Tricks like:
Context context = getActivity();
SharedPreferences sharedPref = context.getSharedPreferences(getString(R.string.preference_file_key), Context.MODE_PRIVATE);
... doesn't work.
Try to encapsulate your SharedPreferences in some preferences class, similar to this:
This way we provide clean API for our non-volatile data storage.
SharedPreferences
is too low-level, exposing too many details, such as storage file name and it forces us to remember all keys and value types to extract any data. It may work in simple cases, but as soon as your stored data becomes complex, it creates tons of problems. Try storing something like a user profile with few fields or a simple complex number and you'll get the idea. Using rawSharedPreferences
will make your refactoring royal pain. Even simple data format upgrade (like schema update) will quickly become impossible with nakedSharedPreferences
.