Android java : How to load html files in assets via WebView?
The base url for html files under the assets of your app is
"file:///android_asset/"
WebView wv = new WebView(context);
wv.getSettings().setJavaScriptEnabled(true);
wv.loadUrl("file:///android_asset/coca/coca_00001_the.html");
❤️ Support This Blog
If this post helped you, you can support my writing with a small donation. Thank you for reading.
Comments
Post a Comment