[android-developers] Re: Save Html file Data

2014-09-19 Thread Rahul Kaushik
Anyone? On Mon, Sep 15, 2014 at 3:10 PM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hi, I have an html file stored in assets folder ,i open it in webview with loadurl() in offline mode(No internet ) and fill the data in relative text-field ,so that when internet is available i can post

Re: [android-developers] Re: Save Html file Data

2014-09-19 Thread SIVAKUMAR J
Better you use data base for storing data .When net comes (online) in background send the data to server On Fri, Sep 19, 2014 at 11:56 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Anyone? On Mon, Sep 15, 2014 at 3:10 PM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hi, I have an

Re: [android-developers] Re: Save Html file Data

2014-09-19 Thread mayank k varshney
bass the db object to your html through JS. Save the data when your web view activity destroyed and reload it once it comes on the foreground. Email Signature2 Want to know when your emails are opened? Click Here

Re: [android-developers] Re: Save Html file Data

2014-09-19 Thread Nobu Games
Or the simpler alternative: use the HTML5 persistent local storage feature, so everything can be handled from within the same HTML page. http://stackoverflow.com/questions/5899087/android-webview-localstorage https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Storage -- You received