android save int

www.lau‮.irutt‬com
android save int

save a int variable in Android

SharedPreferences sp = getSharedPreferences("your_prefs", Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putInt("your_int_key", yourIntValue);
editor.commit();
Created Time:2017-08-31 08:48:58  Author:lautturi