実際、これは接続タイムアウトを設定するために私がしなければならないことです:
HttpGet httpPost = new HttpGet("www.xxxx.com/method");
HttpParams httpParameters = new BasicHttpParams();
// Set the timeout in milliseconds until a connection is established.
// The default value is zero, that means the timeout is not used.
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT)
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 5000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
HttpResponse response = httpClient.execute(httpGet);
しかし、私のアプリケーションでは、MainActivitiesでを作成し、他のすべてのアクティビティで使用しますhttpClient
。Static field
ただセッションをするために。
したがって、すべてのアクティビティにこのコードを含める必要があります。
HttpParams httpParameters = new BasicHttpParams();
// Set the timeout in milliseconds until a connection is established.
// The default value is zero, that means the timeout is not used.
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT)
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 5000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
その後
MainActivity.httpClient.setParams(httpParameters);
params
すべてのアクティビティでパラメータを設定するのではなく、でを設定しMainActivity
、他のすべてのアクティビティでhttpClientを使用する方法を知りたいだけです。
ありがとうございました