Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ISharedPreferences preferences = PreferenceManager.GetDefaultSharedPreferences(view.Context);
  2. ISharedPreferencesEditor editor = preferences.Edit();
  3. editor.PutString("v1", "selvakumar");
  4. editor.Commit();
  5.  
  6. ISharedPreferences preferences = PreferenceManager.GetDefaultSharedPreferences(view.Context);
  7. String myValue = preferences.GetString("v1", "");
  8. sampleTextView.Text = myValue;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement