我只知道:webview.enableplatformnotifications();现在被淘汰了。我在我的活动中添加了此代码
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpHost proxy = new HttpHost("X.X.X.X", portNumber); //proxy that i need
httpClient.getParams().setParameter(ConnRouteParams.DEFAULT_PROXY, proxy);
我添加了此代码:
WebView testWebView = new WebView(this);
// WebView.enablePlatformNotifications();// it's obsoleted!
testWebView.loadUrl("http://www.google.com");
结果是:我的设备无法通过3G打开Google.com。
如何使TestWebview知道我已经启用的代理?
您应该按照此链接可能对您有所帮助。
- https://gist.github.com/2297083
- WebView Android代理
- Android WebView Internet访问问题,因为代理?