Loading html file from local folder into webview

后端 未结 3 763
悲&欢浪女
悲&欢浪女 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:08

    In Android 4.4 KitKat, a "Not allowed to load local resource: file:///.." is thrown. arise when loadURL and the only alternative I've found is "loadDataWithBaseURL".

    webView.loadDataWithBaseURL("file:///android_asset/demo/",
                                 tmpDocumentText,"text/html", "UTF-8", null);
    

提交回复
热议问题