3

在我的应用程序中,我将数据保存在 SharedPreferences 上。

这是我的代码

public void initUserData(Context context, String pKey1, String pKey2, long id) {
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext());

         prefs.edit().putString("key1", pKey1).commit();
         prefs.edit().putString("key2", pKey2).commit();
        prefs.edit().putLong("user.id", id).commit();
    }

如何使用 phonegap 获取 SharedPreferences 值?我的意思是使用 JavaScript 获取数据

4

2 回答 2

5

有一个phonegap 插件可以让你使用android 的sharedpreferences。看看这个:https ://github.com/macdonst/AppPreferences

于 2013-08-16T08:48:02.123 回答
2

phone gap 本身支持共享偏好,无需为此使用 android 编码。请参阅 docs.phonegap.com

于 2012-05-31T07:23:22.813 回答