It was an array list at first then I tried changing it into a set so I can place it at putStringSet. But yeah.. It doesn't have a String Datatype
Set<RecordData> set = new HashSet<>(dataList);
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
SharedPreferences.Editor editor = preferences.edit();
editor.putStringSet("recordlists", set);
The RecordData is a class that I created.
I suck.
you can use
GSON
library.. try this For saving and loading shared preferences data:Also place this in your Gradle file: