WebViewSuite icon indicating copy to clipboard operation
WebViewSuite copied to clipboard

HTML document not being displayed fully

Open marcin-szalski opened this issue 7 years ago • 1 comments

with one of the latest updates of a WebView this library stopped from rending full content of a HTML document.

Could this library provide API to access to the encapsulated WebView? or perhaps the use of the WebView property shall be amended?

here's one solution for Android Framework's problem: https://stackoverflow.com/questions/54506084/webview-issue-new-update-android-operative-system

marcin-szalski avatar Feb 08 '19 09:02 marcin-szalski

Maybe:

webview?.interfereWebViewSetup(WebViewSetupInterference { webView ->
            val webSettings = webView.settings

            webSettings.javaScriptEnabled = true
            webSettings.defaultTextEncodingName = "utf-8"
})

paulocoutinhox avatar Jun 19 '20 06:06 paulocoutinhox