Android判断上网方式(Wifi还是数据流量)



首先要在AndroidManifest.xml加上权限:

  1. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>   
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 

判断有无网络连接:

  1. ConnectivityManager mConnectivity = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);   
  2. TelephonyManager mTelephony = (TelephonyManager)this.getSystemService(TELEPHONY_SERVICE);   
  3. //检查网络连接   
  4. NetworkInfo info = mConnectivity.getActiveNetworkInfo();   
  5.   
  6. if (info == null || !mConnectivity.getBackgroundDataSetting()) {   
  7. return false;   
  8. }   
ConnectivityManager mConnectivity = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE); 
TelephonyManager mTelephony = (TelephonyManager)this.getSystemService(TELEPHONY_SERVICE); 
//检查网络连接 
NetworkInfo info = mConnectivity.getActiveNetworkInfo(); 

if (info == null || !mConnectivity.getBackgroundDataSetting()) { 
return false; 
} 

检查网络类型:

  1. int netType = info.getType();   
  2. int netSubtype = info.getSubtype();   
  3.   
  4. if (netType == ConnectivityManager.TYPE_WIFI) {  //WIFI  
  5.    return info.isConnected();   
  6. else if (netType == ConnectivityManager.TYPE_MOBILE && netSubtype == TelephonyManager.NETWORK_TYPE_UMTS && !mTelephony.isNetworkRoaming()) {   //MOBILE  
  7.    return info.isConnected();   
  8. else {   
  9.    return false;   
  10. }   
int netType = info.getType(); 
int netSubtype = info.getSubtype(); 

if (netType == ConnectivityManager.TYPE_WIFI) {  //WIFI
   return info.isConnected(); 
} else if (netType == ConnectivityManager.TYPE_MOBILE && netSubtype == TelephonyManager.NETWORK_TYPE_UMTS && !mTelephony.isNetworkRoaming()) {   //MOBILE
   return info.isConnected(); 
} else { 
   return false; 
} 


判断WiFi是否已连接:

  1. /** 
  2.  * make true current connect service is wifi 
  3.  * @param mContext 
  4.  * @return 
  5.  */  
  6. private static boolean isWifi(Context mContext) {  
  7.     ConnectivityManager connectivityManager = (ConnectivityManager) mContext.getSystemService(Context.CONNECTIVITY_SERVICE);  
  8.     NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo();  
  9.     if (activeNetInfo != null && activeNetInfo.getType() == ConnectivityManager.TYPE_WIFI) {  
  10.         return true;  
  11.     }  
  12.     return false;  
  13. }  
	/**
	 * make true current connect service is wifi
	 * @param mContext
	 * @return
	 */
	private static boolean isWifi(Context mContext) {
		ConnectivityManager connectivityManager = (ConnectivityManager) mContext.getSystemService(Context.CONNECTIVITY_SERVICE);
		NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo();
		if (activeNetInfo != null && activeNetInfo.getType() == ConnectivityManager.TYPE_WIFI) {
			return true;
		}
		return false;
	}

判断WiFi和移动流量是否已连接:

  1. public static boolean checkNetworkConnection(Context context)  
  2.    {  
  3.        final ConnectivityManager connMgr = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);  
  4.   
  5.        final android.net.NetworkInfo wifi =connMgr.getNetworkInfo(ConnectivityManager.TYPE_WIFI);  
  6.        final android.net.NetworkInfo mobile =connMgr.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);  
  7.   
  8.        if(wifi.isAvailable()||mobile.isAvailable())  //getState()方法是查询是否连接了数据网络  
  9.            return true;  
  10.        else  
  11.            return false;  
  12.    }  
 public static boolean checkNetworkConnection(Context context)
    {
        final ConnectivityManager connMgr = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);

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

        if(wifi.isAvailable()||mobile.isAvailable())  //getState()方法是查询是否连接了数据网络
            return true;
        else
            return false;
    }


只判断移动网络连接是否正常:

  1. <span style="font-family: Arial, Helvetica, sans-serif;">public boolean isMobileConnected(Context context) {    
  2. </span><span style="font-family: Arial, Helvetica, sans-serif;">        if (context != null) {  </span>  
<span style="font-family: Arial, Helvetica, sans-serif;">public boolean isMobileConnected(Context context) {  
</span><span style="font-family: Arial, Helvetica, sans-serif;">        if (context != null) {  </span>
  1.     ConnectivityManager mConnectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);    
  2.     NetworkInfo mMobileNetworkInfo = mConnectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);   //获取移动网络信息  
  3.     if (mMobileNetworkInfo != null) {    
  4.         return mMobileNetworkInfo.isAvailable();    //getState()方法是查询是否连接了数据网络  
  5.     }    
  6. }    
  7. return false;    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值