0

私はたくさんグーグルで検索しましたが、適切な答えが得られませんでした。androidのphonegapは、キーと値をxml形式で保存するSharedPreferencesをサポートしていますか?

4

1 に答える 1

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.

これはいくつかの方法であり、利用可能な方法もたくさんあるかもしれません。

これは簡単に実装できます。

これがお役に立てば幸いです。

ありがとう。

于 2012-12-13T09:07:13.737 に答える