android wifi通话,java - 如何选择/强制使用移动数据(或wifi)在Android上进行网络通话? - 堆栈内存溢出...

您可以使用ConnectivityManager来检查哪种网络类型可用,如果已连接wifi,请致电您的api其他显示对话框,以通知用户该api需要打开wifi或反向打开。

您可以使用连接性类来检查网络

public class Connectivity {

public static NetworkInfo getNetworkInfo(Context context){

ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);

return cm.getActiveNetworkInfo();

}

public static boolean isConnected(Context context){

NetworkInfo info = Connectivity.getNetworkInfo(context);

return (info != null && info.isConnected());

}

public static boolean isConnectedWifi(Context context){

NetworkInfo info = Connectivity.getNetworkInfo(context);

return (info != null && info.isConnected() && info.getType() == ConnectivityManager.TYPE_WIFI);

}

public static boolean isConnectedMobile(Context context){

NetworkInfo info = Connectivity.getNetworkInfo(context);

return (info != null && info.isConnected() && info.getType() == ConnectivityManager.TYPE_MOBILE);

}

public static boolean isConnectedFast(Context context){

NetworkInfo info = Connectivity.getNetworkInfo(context);

return (info != null && info.isConnected() && Connectivity.isConnectionFast(info.getType(),info.getSubtype()));

}

public static boolean isConnectionFast(int type, int subType){

if(type==ConnectivityManager.TYPE_WIFI){

return true;

}else if(type==ConnectivityManager.TYPE_MOBILE){

switch(subType){

case TelephonyManager.NETWORK_TYPE_1xRTT:

return false; // ~ 50-100 kbps

case TelephonyManager.NETWORK_TYPE_CDMA:

return false; // ~ 14-64 kbps

case TelephonyManager.NETWORK_TYPE_EDGE:

return false; // ~ 50-100 kbps

case TelephonyManager.NETWORK_TYPE_EVDO_0:

return true; // ~ 400-1000 kbps

case TelephonyManager.NETWORK_TYPE_EVDO_A:

return true; // ~ 600-1400 kbps

case TelephonyManager.NETWORK_TYPE_GPRS:

return false; // ~ 100 kbps

case TelephonyManager.NETWORK_TYPE_HSDPA:

return true; // ~ 2-14 Mbps

case TelephonyManager.NETWORK_TYPE_HSPA:

return true; // ~ 700-1700 kbps

case TelephonyManager.NETWORK_TYPE_HSUPA:

return true; // ~ 1-23 Mbps

case TelephonyManager.NETWORK_TYPE_UMTS:

return true; // ~ 400-7000 kbps

/*

* Above API level 7, make sure to set android:targetSdkVersion

* to appropriate level to use these

*/

case TelephonyManager.NETWORK_TYPE_EHRPD: // API level 11

return true; // ~ 1-2 Mbps

case TelephonyManager.NETWORK_TYPE_EVDO_B: // API level 9

return true; // ~ 5 Mbps

case TelephonyManager.NETWORK_TYPE_HSPAP: // API level 13

return true; // ~ 10-20 Mbps

case TelephonyManager.NETWORK_TYPE_IDEN: // API level 8

return false; // ~25 kbps

case TelephonyManager.NETWORK_TYPE_LTE: // API level 11

return true; // ~ 10+ Mbps

// Unknown

case TelephonyManager.NETWORK_TYPE_UNKNOWN:

default:

return false;

}

}else{

return false;

}

}

}

检查可用的网络类型

if (isConnectedWifi(ctx) {

// Call api

}else if (isConnectedMobile(ctx)){

// Show dialog to user to inform him that this api required open wifi

}else{

//

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值