I'm facing a huge problem developing an Android app which use a Webview to display datas. The website i'm using in the webview use localStorage API of HTML 5.

To enable this feature i've set the webview setting like this :

webview.getSettings().setDomStorageEnabled(true);
webview.getSettings().setJavaScriptEnabled(true);

So the localStorage API works but when I close the app (and kill the process), localStorage is completly erased and when I reload it, all my datas are lost.

My question is simple : How to make DomStorage of a Webview persistant even when we close the app ?

Thank you for all you future answers.

link|improve this question
2  
I've found the solution, you need to set the databasePath in order to save datas : webview.getSettings().setDatabasePath(); – jimroot25 Nov 12 '10 at 15:21
Can you share what the path you set it to? I am facing the same problem now. – Dongshengcn Feb 16 '11 at 17:23
did my answer solve your problem? – Rafael Roman Jun 14 '11 at 16:37
Is it possible to read the local storage vars that are set by the html5 directly from java? I've found the question asked elsewhere, but no one seems to have an answer? – Anthony Webb Feb 25 at 22:25
feedback

2 Answers

Did you set the DatabasePath? Android doesn't know where to save the DOMDatabase by default, if you don't set it calling

webview.getSettings().setDatabasePath()
link|improve this answer
feedback

// Confimed on android 2.1 emulator

// enable javascript localStorage

WebSettings webSettings = myWebView.getSettings();

webSettings.setDomStorageEnabled(true); // localStorage

webSettings.setDatabasePath("/data/data/packagename/databases/");

// eg if your package

// package www.myapp.whatever;

// eg webSettings.setDatabasePath("/data/data/www.myapp.whatever/databases/");

this works

link|improve this answer
what about in andorid 2.2 , whether its working or not, because for me in 2.1 its working but not in 2.2 – Karthi Oct 12 '11 at 6:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.