I am integrating html in android.I have created a web view, But i am not able load local html page. Surprisingly web view is loading ‘http:google.com’ properly, not my local html file. I have tried almost all possible link of SO. The error message is’Web Page could not be loaded’
WebView view = (WebView) findViewById(R.id.webView1);
view.loadUrl("file:///assets/www/trialhtml.html");![enter image description here][1]
Create your HTML file and place it in the assets folder, then you need to add these lines to the
onCreatemethod like this:Here is the final result:
