通过android webview发送长查询字符串

时间:2012-03-18 09:39:24

标签: android webview query-string

我正在开发一个使用webview组件的android应用程序。 当我尝试通过我的webview组件发送由长qureystrings引起的长URL。我收到以下错误:找不到指定的URL。 此错误仅发生在Android 2.1中。 在Android 2.2及以上的长URL工作正常。

1 个答案:

答案 0 :(得分:-1)

请参阅下面的解决方案,它适用于我

String data = "<html><body><img src='your source url' width='1000' Height='1000'></body></html>";
            wbView.loadData(data, "text/html", null);

也是这个链接

See this