我只知道 :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 知道我所使用的代理?