I have html text that I want to show in webview.
As specification, data must be URI-escaped.
So I tried to use URLEncoder.encode() function, but that will not help me, as it converts blank space with plus sign.
So is there any encoding function available?
As @Seb said, I created my own function that worked for me:
Any improvement in this approach will be appreciated.