码迷,mamicode.com
首页 > 移动开发 > 详细

Android获取SIM卡的运营商

时间:2015-03-06 10:00:11      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

在Android的主Activity的初始化函数中添加:

TelephonyManager tm = (TelephonyManager) this
.getSystemService(TELEPHONY_SERVICE);
SubscriberId = tm.getSubscriberId();

if (SubscriberId != null && SubscriberId != "null") {
  if (SubscriberId.startsWith("46001")) {

     // 联通
  } else if (SubscriberId.startsWith("46003")) {
     // 电信
  } else {
    // 移动
  }
}

Android获取SIM卡的运营商

标签:

原文地址:http://www.cnblogs.com/Colored-Mr/p/4317291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!