如果您使用的是基于 Web 视图的方法(可能类似于 cordova?),您可以只使用本地存储或 html5 应用程序的 web sql 标准:Tutorial for Web-Sql。
如果您想存储 cookie,您必须启用它们。我在我的 Phonegap/Cordova 应用程序中使用以下几行代码执行此操作:
@Override
public void onCreate(Bundle savedInstanceState) {
// ... do whatever you want...
// this lines allow to set cookies
try {
CookieManager.setAcceptFileSchemeCookies(true);
} catch (Throwable e) {
}
// and the default stuff for phonegap/cordova to show a splashscreen and load the application
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.splash);
// load the index url from config adding locale support.
super.loadUrl(Config.getStartUrl() + "?locale="
+ Locale.getDefault().getLanguage(), 4000);
}
我希望这有帮助。