博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 判断SIM卡是哪个运营商
阅读量:6222 次
发布时间:2019-06-21

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

package com.eboy.checksimoperator;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.telephony.TelephonyManager;
import android.view.Menu;
import android.view.View;
import android.widget.Toast;
public 
class MainActivity 
extends Activity {
    @Override
    
public 
void onCreate(Bundle savedInstanceState) {
        
super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    @Override
    
public 
boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        
return 
true;
    }
        
    
public 
void checkSIM(View v){
        TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); 
        String operator = telManager.getSimOperator(); 
        
if (operator != 
null){
            
if (operator.equals("46000") || operator.equals("46002")){
                Toast.makeText(
this, "此卡属于(中国移动)", Toast.LENGTH_SHORT).show();
            } 
else 
if (operator.equals("46001")){
                Toast.makeText(
this, "此卡属于(中国联通)", Toast.LENGTH_SHORT).show();                
            } 
else 
if (operator.equals("46003")){
                Toast.makeText(
this, "此卡属于(中国电信)", Toast.LENGTH_SHORT).show();                
            }
        }
    }    
}

转载于:https://www.cnblogs.com/jxgxy/archive/2012/08/13/2636399.html

你可能感兴趣的文章
FTP 服务器 下载目录下的所有文件到本地(FTP模式 非 SFTP模式)
查看>>
JavaScript下的encode和decode
查看>>
centos 文件编码转换命令
查看>>
操丛数据
查看>>
Maven的配置文件pom.xml
查看>>
微软windows 8.1 Preview 预览版发布下载
查看>>
linux下的Sybase安装
查看>>
oracle全局变量
查看>>
Windows下无法用django连接MySQL解决办法一例
查看>>
python 学习记录
查看>>
GCMail邮件系统怎样限制内外网邮件收发?
查看>>
Linux 定制版 作秀 And 创新 ?!
查看>>
如何使用投影仪
查看>>
struts2 文件下载 报错
查看>>
论个人网站备份的重要性
查看>>
使用xtrabackup备份和还原mysql的多实例(基于全备)
查看>>
监控磁盘读写状况
查看>>
Dockerfile 配置
查看>>
Python中创建虚拟环境
查看>>
foundation的sass版本
查看>>