У меня есть WebView. Я хочу загрузить локальный файл HTML с именем helloworld.html. Он находится в моей папке drawable-hdpi.
Вот мой код:
webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("file:///android_asset/helloworld.html");
Я получаю ошибку браузера:
The webpage at file:///android_asset/helloworld.html could not be loaded as the file requested was not found. /android_asset/helloworld.html (no such file or directory)
Как я могу решить?