博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 获取网络链接类型
阅读量:5104 次
发布时间:2019-06-13

本文共 809 字,大约阅读时间需要 2 分钟。

/**	 * 获取当前网络类型	 * @return 0:没有网络   1:WIFI网络   2:WAP网络    3:NET网络	 */	public int getNetworkType() {		int netType = 0;		ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);		NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();		if (networkInfo == null) {			return netType;		}				int nType = networkInfo.getType();		if (nType == ConnectivityManager.TYPE_MOBILE) {			String extraInfo = networkInfo.getExtraInfo();			if(!StringUtils.isEmpty(extraInfo)){				if (extraInfo.toLowerCase().equals("cmnet")) {					netType = NETTYPE_CMNET;				} else {					netType = NETTYPE_CMWAP;				}			}		} else if (nType == ConnectivityManager.TYPE_WIFI) {			netType = NETTYPE_WIFI;		}		return netType;	}

  

转载于:https://www.cnblogs.com/yshyee/p/3362665.html

你可能感兴趣的文章
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
[leetcode]Minimum Path Sum
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
mysql8.0.13下载与安装图文教程
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
从零开始系列之vue全家桶(1)安装前期准备nodejs+cnpm+webpack+vue-cli+vue-router
查看>>
Jsp抓取页面内容
查看>>