要檢測網絡是否連接不是我使用下面的代碼:如何知道互聯網連接是否存在?
public boolean netConnect(Context ctx)
{
ConnectivityManager cm;
NetworkInfo info = null;
try
{
cm = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
info = cm.getActiveNetworkInfo();
}
catch (Exception e)
{
e.printStackTrace();
}
if (info != null)
{
return true;
}
else
{
return false;
}
}
這是工作完全正常。
但我想知道當應用程序正在從服務器下載某些文件(我的意思是說在過程之間)時,互聯網連接是否關閉,無論如何檢測並顯示互聯網連接丟失或弱?
你可以從這裏走refence: http://stackoverflow.com/questions/4238921/android-detect-whether-there-is-an-internet-connection-available/4239019#4239019 – 2012-02-24 11:20:34