How do I reference the assets from phone memory? I need it to write the absolute path into a html file to load some images which are in assets folder. This html is saved in the phone memory but I can’t to save these images in the memory phone because these are very big.
Share
file:///android_asset/..., where...is the stuff inside yourassets/directory. Note that will only work within your own process, so you can load the HTML into aWebViewthis way, but not into the Browser application.