Search code examples
androidstorageinternal

where is the best place to save editable html pages to view on webview on android project (NOT IN ASSETS)?


i want to save HTML pages on my android projects. since assets folder is read only, i can not save them there, because i can not edit them if someday i need to, so where is the best place to save it?


Solution

  • Put your files inside the asset folder and copy them to the SD card the first time the application is started. In this way you'll be able to edit those files if needed.

    Helpful links: