Reputation: 1453
In android, I have loaded Webview with assets directory html files and I want to modfiy these html file from java code. Any code to modify it? I am novice to WebView. Thanks in advance!
Updated
According to the following answers, we can't modify or update the files of assets folder.So, any other ways possible without using Internal or External Storage?
Upvotes: 3
Views: 1480
Reputation: 1720
you cannot write to assets file, alternate you can store the file to the internal store after modifying and read from that place.
Upvotes: 1