本文共 989 字,大约阅读时间需要 3 分钟。
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);
转载地址:http://vhnna.baihongyu.com/