***Tips Save you Time ***
Loading local html file in Webview in Android is easy.But, most of them encounter a simple error message like this:
SOLUTION:
1) Check spelling for assets (include ‘s’)folder in src>main.(If it is asset,Change it to assets)
2) Format to load html from assets folder is:
help = (WebView) findViewById(R.id.webView);
help.loadUrl("file:///android_asset/help.html");… Read more