0

我已尝试使用此代码检查我的移动网络连接

final ConnectivityManager connMgr = (ConnectivityManager) 
        getSystemService(Context.CONNECTIVITY_SERVICE);


        final android.net.NetworkInfo mobile = 
        connMgr.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);


        if( mobile.isAvailable() ){
            Toast tst = Toast.makeText(this, "There is a network", Toast.LENGTH_SHORT);
              tst.show();   
                        }
        else
        {
            Toast tst = Toast.makeText(this, "There is No network",Toast.LENGTH_SHORT);
              tst.show();   
        }

程序总是说“没有网络”,尽管有网络。可能是因为我使用的是 2G 的 SIM 卡,而这种方法适用于 3G。有什么线索吗?

4

3 回答 3

1

我猜你想要电话状态,而不是数据状态。

尝试使用不同的 API。

http://developer.android.com/reference/android/telephony/ServiceState.html

这可能有效。

http://developer.android.com/reference/android/telephony/TelephonyManager.html

可能也很方便。

于 2012-06-10T21:04:05.797 回答
0

尝试使用:

try{

     if(mobile.getState() == NetworkInfo.State.CONNECTED){
          //connected
     }else{
          //not connected
     }

}catch (Exception e){
    // if device doesnt have mobile
}
于 2012-06-10T20:35:51.170 回答
0

我用它来检查网络连接,希望它有帮助:)

public static boolean isOnline(Context applicationContext){
    ConnectivityManager cm = (ConnectivityManager) applicationContext.getSystemService(Context.CONNECTIVITY_SERVICE);
    try{ 
        return cm.getActiveNetworkInfo().isConnectedOrConnecting();
    }
    catch(NullPointerException npe){

        return false; //Airplane mode is on
    }
}
于 2012-06-10T20:41:54.937 回答