0

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

4

1 回答 1

-1

您应该关注此链接,它可能对您有所帮助。

于 2012-11-06T08:47:39.473 回答