 |
Is it possible to add an array or object to SharedPreferences on Android - Stack Overflow
SAVE ARRAY public boolean saveArray(String[] array, String arrayName, Context mContext) { SharedPreferences prefs = mContext.getSharedPreferences("preferencename", 0); SharedPreferences.Editor editor = prefs.edit(); editor.putInt(arrayName ...
stackoverflow.com |
 |