I have shared preferences in my app
I want to clear it by tapping a button
How I can do this?
I using Xamarin(c#) for making Android app
SharedPreferences code
On first activity:
ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences (this);
ISharedPreferencesEditor editor = prefs.Edit ();
And on Second:
ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences (this);
string product = prefs.GetString ("title","");
string _weight = prefs.GetString ("weight","");
string _price = prefs.GetString ("price","");