Hi i am trying to dynamically load new content on my webview and on devices and emulators higher then 2.x, it works fine but on devices lower it doesnt.
No errors get thrown in the logs. Instead, the webview doesnt display the new content at all.
i am displaying a new content such as a picture like this
webView.loadData(imageInBase64, "image/png", "base64"); the imageInBase64 basically extracts the bites from a file image and then encodes it to base64. that part works fine(or could this be the issue where base64 doesnt work on older OS's?)
any advice on what could be the issue or if there is another way to load content into a webview?
Thanks