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

Android の共有設定を使用できるようにする phonegap プラグインがあります。これを見てください:https://github.com/macdonst/AppPreferences

于 2013-08-16T08:48:02.123 に答える
2

電話ギャップ自体は共有設定をサポートしており、Android コーディングを使用する必要はありません。docs.phonegap.com を参照してください

于 2012-05-31T07:23:22.813 に答える