标签:.text class XA null false login username font his
1.存储登陆信息
if(login_cb_user.Checked) { ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences(this); ISharedPreferencesEditor editor = prefs.Edit(); editor.PutBoolean("Ck_Status", true); editor.PutString("UserName", UserName); editor.Commit(); editor.Apply(); } else { ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences(this); ISharedPreferencesEditor editor = prefs.Edit(); editor.PutBoolean("Ck_Status", false); editor.PutString("UserName", null); editor.Commit(); editor.Apply(); }
2.读取登录信息
ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences(this); login_cb_user.Checked = prefs.GetBoolean("Ck_Status", false); login_et_user.Text = prefs.GetString("UserName", null);
标签:.text class XA null false login username font his
原文地址:https://www.cnblogs.com/swjian/p/8908131.html