Phonegap的SharedPreferences是否支持以xml格式存储文件?

时间:2012-12-13 08:59:46

标签: android cordova sharedpreferences phonegap-plugins

我搜索了很多但没有得到正确的答案。 android的phonegap是否支持SharedPreferences以xml格式存储密钥和值?

1 个答案:

答案 0 :(得分:3)

Phonegap未直接提供SharedPreference。

可能有不同的方法来遵循相同的方案。

   [1] You can make plugin calls from phonegap code to Android and use SharedPreference there.

   [2] You can use html5's localstorage as well, if there is no need of storing large amount of data.

编辑:

   [3] You can also use JavascriptInterface to achieve such functionality. This will be more easy then implement custom phonegap plugin.

这是一些方法,也可能有许多方法。

这可以轻松实现。

希望这会对你有所帮助。

感谢。