Loading html file in Android

***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:

Screenshot_2015-02-14-11-24-21

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