Loading html file from local folder into webview

后端 未结 3 766
悲&欢浪女
悲&欢浪女 2020-12-23 18:26

I\'m new to Android development.

I want to load a html file into a webview.

Note that there are so many relevant questions on SO like this,

3条回答
  •  醉酒成梦
    2020-12-23 19:19

    WebView has loadData method http://developer.android.com/reference/android/webkit/WebView.html

    All you need to do is reading the file into String then feed it to WebView using loadData.

提交回复
热议问题