Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android 判斷SIM卡屬於哪個移動運營商的實現代碼

Android 判斷SIM卡屬於哪個移動運營商的實現代碼

編輯:Android開發實例

代碼如下:

[java]
public String getProvidersName()
  {
    String str = "N/A";
    try
    {
      this.IMSI = this.telephonyManager.getSubscriberId();
      System.out.println(this.IMSI);
      if (this.IMSI.startsWith("46000"))
       str = "中國移動";  break;
      if (this.IMSI.startsWith("46002"))
       str = "中國移動"; break ;
      if (this.IMSI.startsWith("46001"))
        str = "中國聯通";
      else if (this.IMSI.startsWith("46003"))
        str = "中國電信";
    }
    catch (Exception localException)
    {
      localException.printStackTrace();
    }
         return str;
  }

注意申明:
[java]
代碼如下:

this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone"));

就這麼簡單。。。。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved