私のアプリケーションでは、データを 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 を使用してデータを取得するということです