webView.LoadUrl(string.Format("file:///android_asset/pdfjs/web/viewer.html?file={0}", string.Format("file:///android_asset/content/{0}", WebUtility.UrlEncode("program.pdf"))));
Does someone know the equivalent of that code?
I tried
webView.loadUrl(String.format("file:///android_asset/pdfjs/web/viewer.html?file={0}", String.format("file:///android_asset/content/{0}", URLEncoder.encode("program.pdf","utf-8"))));
But i guess it's wrong because it is not doing what it's supposed to do