Android如何在Connection TimeOUT上显示toast



我使用下面的代码(来自kuester2000的这个答案)来检查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 ??

您可以使用try-catch块。

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

确保从"活动"传递正确的上下文。

希望这能有所帮助。

最新更新