Recently I am developing a simple android game. For the scoring part, I have on many websites that shared preferences are best to save the high score. Now, what if I need to sav
A lot of ways to save your scores to the SharedPreference. All depending on your style of implementation.
SharedPreference
You can simply use the putStringSet(key, String[]) where as the key will be the level and the String[] the 1ste, 2nd and 3th place.
putStringSet(key, String[])