Android如何在Connection TimeOUT上显示toast

时间:2014-10-07 08:00:42

标签: android networking toast connection-timeout http-response-codes

我使用下面的代码来检查Android中的连接超时。除此之外,如果连接实际超时,我怎么能显示Toast?有什么建议吗?

/*Client timeout*/
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;        //3Seconds
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT) 
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 5000;            //5Seconds
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
/*Client timeout ends*/

final HttpClient client = new DefaultHttpClient(httpParameters);

**********************
//HOW TO SHOW TOAST MESSAGE WHEN THIS CASE ACTUALLY OCCURS ??

1 个答案:

答案 0 :(得分:1)

你可以使用try catch块。

try{
    //your code of making request
}
catch (ConnectTimeoutException e) {
    Toast.makeText(context, "Connection timed out.", Toast.LENGTH_SHORT).show();    
}

确保从活动中传递适当的上下文。

希望这会有所帮助。