android判断手机号的运营商

       TextView tv=(TextView)findViewById(R.id.tv); 
        TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
      // 获取SIM卡的IMSI码
        String imsi = telManager.getSubscriberId();
        //半段IMIS中的MNC
        if(imsi!=null){ if(imsi.startsWith("46000") || imsi.startsWith("46002"))

        {//因为移动网络编号46000下的IMSI已经用完,所以虚拟了一个46002编号,134/159号段使用了此编号 //中国移动
        	tv.setText(imsi+"中国移动");

        }else if(imsi.startsWith("46001")){

        //中国联通
        	tv.setText(imsi+"中国联通");

        }else if(imsi.startsWith("46003")){

        //中国电信
        	tv.setText(imsi+"中国电信");

        } }


注意在Manifest.xml中添加权限:

<uses-permission android:name="android.permission.READ_PHONE_STATE" /> 


      

  TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); 
        String operator = telManager.getSimOperator();
        TextView tv=(TextView)findViewById(R.id.tv);
        if(operator!=null){ if(operator.equals("46000") || operator.equals("46002")|| operator.equals("46007")){


        //中国移动
        	
        	tv.setText("中国移动");


        }else if(operator.equals("46001")){


        //中国联通
        	tv.setText("中国联通");


        }else if(operator.equals("46003")){


        //中国电信
        	tv.setText("中国电信");


注意在Manifest.xml中添加权限:

<uses-permission
android:name="android.permission.READ_PHONE_STATE" />








android判断手机号的运营商,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。