I just know that :WebView.enablePlatformNotifications(); it's obsoleted now. I add this code in my Activity
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpHost proxy = new HttpHost("X.X.X.X", portNumber); //proxy that i need
httpClient.getParams().setParameter(ConnRouteParams.DEFAULT_PROXY, proxy);
and I add this code:
WebView testWebView = new WebView(this);
// WebView.enablePlatformNotifications();// it's obsoleted!
testWebView.loadUrl("http://www.google.com");
The result is : my device cannot open google.com through 3g.
How can I make testWebView known the proxy I have stetted?