Android equivalent of NSUserDefaults in iOS Android equivalent of NSUserDefaults in iOS ios ios

Android equivalent of NSUserDefaults in iOS


This is the most simple solution I've found:

//--Initint myvar = 12;//--SAVE DataSharedPreferences preferences = context.getSharedPreferences("MyPreferences", Context.MODE_PRIVATE);  SharedPreferences.Editor editor = preferences.edit();editor.putInt("var1", myvar);editor.commit();//--READ data       myvar = preferences.getInt("var1", 0);  

Where 'context' is the current context (e.g. in an activity subclass could be this).