我想在WebView中加载这个网址:
我试过基本的方法:
wv.loadUrl("..");
在iframe中:
String str2 = "<body style=\"margin:0px;padding:0px;overflow:hidden\">\n" +
"<iframe src=\""+"https://crocodoc.com/view/"+sessionId+"\" frameborder=\"0\" style=\"overflow:hidden;height:100%;width:100%\" height=\"100%\" width=\"100%\"></iframe>\n" +
"</body>";
wv.loadData(str2, "text/html","utf-8");
使用经典客户端,一个chrome chient,可以让我想到的每个WebView设置更少。但是我放松了控件,我只看到文档的一个可怕的zommed视图,我无法缩放等...
我只离开了:
wv.getSettings().setJavaScriptEnabled(true);
在我的手机浏览器中显示我想要的内容。
所以我的问题是:为什么?我应该如何使它看起来与firefox或chrome相同。
谢谢