I have created an activity where i have used shared preferences for storing data..now in another activity i have an reset button..when i click on the reset button the data s
Get your Editor
and call clear()
something like this:
Edit: as the user DDoSAttack mentioned.
There are two ways of getting SharedPreferences
1: getting default SharedPreferences
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(con);
2: getting specific SharedPreferences
SharedPreferences prefs = Context.getSharedPreferences("FileName", Context.MODE_PRIVATE);
and here is how you'll clear it.
public void clear()
{
SharedPreferences prefs; // here you get your prefrences by either of two methods
Editor editor = prefs.edit();
editor.clear();
editor.commit();
}
If you want to wipe all the data in a preference file call clear()
from the SharedPreferences.Editor
instance
http://developer.android.com/reference/android/content/SharedPreferences.Editor.html#clear()
its very easy..
yourEditor.remove(" thing you want to remove on start");
and then give must
yourEditor.commit();
Use SharedPreferences.Editor clear()
method.
See Documentation
SharedPreferences preferences = getPreferences(0);
SharedPreferences.Editor editor = preferences.edit();
editor.clear();
editor.commit();