By doing following steps you can load the HTML file from the assets folder inside your application:-
1) Copy that HTML file inside your assets folder.
2) Define a WebView in your layout, like this
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
3) Initialize webview inside the activity or fragment and then load the html like this
webview = (WebView) findViewById(R.id.webview);
webview.loadUrl("file:///android_asset/test.html");
Cheers :)
0 Comment(s)