前言
从18年毕业至今,就职过两家公司,大大小小项目做了几个,非常感谢我的两位老大,在我的android成长路上给予我很多指导,亦师亦友的关系。
从年前至今参加面试了很多公司,也收到了几家巨头的offer,还有其他公司的。总结下经验,也是对过去的一个回顾和总结吧。
public static final int NETWORK_TYPE_NONE = 0;
public static final int NETWORK_TYPE_2G = 2;
public static final int NETWORK_TYPE_3G = 3;
public static final int NETWORK_TYPE_4G = 4;
public static final int NETWORK_TYPE_WIFI = 10;
private String getNetType() {
int type = getNetworkType(mContext);
String netType = “”;
switch (type) {
case Utils.NETWORK_TYPE_NONE:
netType = “”;
break;
case Utils.NETWORK_TYPE_2G:
netType = “2G”;
break;
case Utils.NETWORK_TYPE_3G:
netType = “3G”;<