天天看點

Xamarin.Android 記住賬号

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);