I have looked about and everything looks right but it's not working. It will let me load internet pages, but as soon as I change it to load my localhtml file it comes up as "webpage not found". Here is my code. My asset folder is at app/src/main/asset/index.html.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebView = (WebView) findViewById(R.id.activity_main_webview);
// Enable Javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("file:///android_asset/index.html");