• 判断当前手机的网络类型


    需要用到上面的方法

    12.判断手机连接的网络类型(2G,3G,4G)

    联通的3G为UMTS或HSDPA,移动和联通的2G为GPRS或EGDE,电信的2G为CDMA,电信的3G为EVDO

    public class Constants {

        /**

         * Unknown network class

         */

        public static final int NETWORK_CLASS_UNKNOWN = 0;

        /**

         * wifi net work

         */

        public static final int NETWORK_WIFI = 1;

        /**

         * "2G" networks

         */

        public static final int NETWORK_CLASS_2_G = 2;

        /**

         * "3G" networks

         */

        public static final int NETWORK_CLASS_3_G = 3;

        /**

         * "4G" networks

         */

        public static final int NETWORK_CLASS_4_G = 4;

    }

    public static int getNetWorkClass(Context context) {

            TelephonyManager telephonyManager = (TelephonyManager) context

                    .getSystemService(Context.TELEPHONY_SERVICE);

            switch (telephonyManager.getNetworkType()) {

            case TelephonyManager.NETWORK_TYPE_GPRS:

            case TelephonyManager.NETWORK_TYPE_EDGE:

            case TelephonyManager.NETWORK_TYPE_CDMA:

            case TelephonyManager.NETWORK_TYPE_1xRTT:

            case TelephonyManager.NETWORK_TYPE_IDEN:

                return Constants.NETWORK_CLASS_2_G;

            case TelephonyManager.NETWORK_TYPE_UMTS:

            case TelephonyManager.NETWORK_TYPE_EVDO_0:

            case TelephonyManager.NETWORK_TYPE_EVDO_A:

            case TelephonyManager.NETWORK_TYPE_HSDPA:

            case TelephonyManager.NETWORK_TYPE_HSUPA:

            case TelephonyManager.NETWORK_TYPE_HSPA:

            case TelephonyManager.NETWORK_TYPE_EVDO_B:

            case TelephonyManager.NETWORK_TYPE_EHRPD:

            case TelephonyManager.NETWORK_TYPE_HSPAP:

                return Constants.NETWORK_CLASS_3_G;

            case TelephonyManager.NETWORK_TYPE_LTE:

                return Constants.NETWORK_CLASS_4_G;

            default:

                return Constants.NETWORK_CLASS_UNKNOWN;

            }

        }

    13.判断当前手机的网络类型(WIFI还是2,3,4G)

    public static int getNetWorkStatus(Context context) {

            int netWorkType = Constants.NETWORK_CLASS_UNKNOWN;

            ConnectivityManager connectivityManager = (ConnectivityManager) context

                    .getSystemService(Context.CONNECTIVITY_SERVICE);

            NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();

            if (networkInfo != null && networkInfo.isConnected()) {

                int type = networkInfo.getType();

                if (type == ConnectivityManager.TYPE_WIFI) {

                    netWorkType = Constants.NETWORK_WIFI;

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

                    netWorkType = getNetWorkClass(context);

                }

            }

            return netWorkType;

        }

  • 相关阅读:
    爬取豆瓣分页照片下载
    css布局:三列布局,中间内容优先加载
    解决在IE下label中IMG图片无法选中radio的几个方法
    CSS架构:最新最佳实践
    JavaScript登陆弹窗,可拖拽
    网站变成灰色的代码
    5个jQuery的备选轻量级移动客户端开发(Mobile development)类库
    jQuery 底部漂浮导航当前位置突出 + 锚点平滑滚动
    Exchange 2007 自定义传输规则
    基于jQuery打造TabPanel
  • 原文地址:https://www.cnblogs.com/Jingerxin/p/5327713.html
Copyright © 2020-2023  润新知