2012-11-06 75 views
0

我只知道:WebView.enablePlatformNotifications();它現在已經過時了。我在我的活動webView與代理設置

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知道我已經敲定的代理?

+1

見http://stackoverflow.com/questions/4488338/webview-android-proxy – fiddler

回答

0
+0

我之前看到他們。正如你所看到的,第二個網站鏈接是無用的。也感謝相同。我仍然混淆了爲什麼我可以通過3G來搜索網頁。但是,如果我換到無線網絡,沒關係! – notree

+0

終於,問題解決了。原因是SIM卡有一些設計缺陷。所以......謝謝 – notree