首页 > 代码库 > android判断网络连接状态、联网类型、运营商
android判断网络连接状态、联网类型、运营商
/** * 获取上网方式 * * @param mContext * @return */ public static String getNetType(Context mContext) { String netType = ""; ConnectivityManager connectionManager = (ConnectivityManager) mContext .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo info = connectionManager.getActiveNetworkInfo(); if (null != info && info.isAvailable()) { netType = info.getTypeName(); } return netType; } /** * 判断网络连接是否可用 * * @param mContext * @return */ public static boolean getNetIsVali(Context mContext) { if (mContext != null) { ConnectivityManager mConnectivityManager = (ConnectivityManager) mContext .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo mNetworkInfo = mConnectivityManager .getActiveNetworkInfo(); if (mNetworkInfo != null) { return mNetworkInfo.isAvailable(); } } return false; } /** * 获取运营商信息 * * @param mContext * @return */ public static String getNetExtraInfo(Context mContext) { String netExtraInfo = ""; TelephonyManager mTm = (TelephonyManager) mContext .getSystemService(Context.TELEPHONY_SERVICE); if (mTm.getSimState() == TelephonyManager.SIM_STATE_READY) { netExtraInfo = mTm.getSimOperator(); if (null != netExtraInfo) { if (netExtraInfo.equals("46000") || netExtraInfo.equals("46002") || netExtraInfo.equals("46007")) { // 中国移动 netExtraInfo = "中国移动"; } else if (netExtraInfo.equals("46001")) { // 中国联通 netExtraInfo = "中国联通"; } else if (netExtraInfo.equals("46003")) { // 中国电信 netExtraInfo = "中国电信"; } else { netExtraInfo = "其他"; } } } return netExtraInfo; }
1.只考虑1卡
2.别忘了加网络权限
android判断网络连接状态、联网类型、运营商
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。