gpt4 book ai didi

Xamarin.Forms 共享首选项

转载 作者:行者123 更新时间:2023-12-02 17:52:17 26 4
gpt4 key购买 nike

以下代码是在共享项目中编写的。


// importing Packages

using Android.Content;
using Android.Preferences;

// storing the values as SharedPreferences


ISharedPreferences pref = PreferenceManager.GetSharedPreferences("UserInfo", FileCreationMode.Private);
ISharedPreferencesEditor edit = pref.Edit();
edit.PutString("Username", username.Text.Trim());
edit.PutString("Password", password.Text.Trim());
edit.Apply();


// retrieving the values

ISharedPreferences pref = PreferenceManager.GetSharedPreferences("UserInfo", FileCreationMode.Private);
string userName = pref.GetString("Username", String.Empty);
string password = pref.GetString("Password", String.Empty);

运行代码时,我们收到以下错误:

'Android.Preferences.PreferenceManager' does not contain a definition for 'GetSharedPreferences'

在 Xamarin.Forms 中使用 SharedPreferences 的正确方法是什么?

最佳答案

ISharedPreferences prefs = PreferenceManager.GetDefaultSharedPreferences(this); 
ISharedPreferencesEditor editor = prefs.Edit();
editor.PutString("username", name);
editor.PutString("password", password);
editor.Apply();

关于Xamarin.Forms 共享首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29343019/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com