I have the HTML data in the byte array, and I want to display it in webview. Currently I am displaying it by converting the byte array to a string and displaying it by using the following code.
mDecryptDataWv.loadDataWithBaseURL("", htmlData, mimeType, encoding, "");
I want to display the byte array directly into webview without using a string.