The default timeout value for a HTTP request is quite long. So long that you'd forget what you were doing and wonder why the game has crashed.
Reduce the timeout value to get more responsiveness out of your app.
1.
HttpParams httpParameters =
new
BasicHttpParams();
2.
HttpConnectionParams.setConnectionTimeout(httpParameters,
5000
);
// Connection timeout
3.
HttpConnectionParams.setSoTimeout(httpParameters,
3000
);
// Socket timeout
4.
5.
// Create a new HttpClient and Post Header
6.
HttpClient httpclient =
new
DefaultHttpClient(httpParameters);
Now you can use the HttpClient as per usual for GET or POST requests.
[ Source ]