歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android手機中獲取手機號碼和運營商信息

代碼如下:

  1. package com.pei.activity;  
  2.   
  3. import Android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8. import android.widget.TextView;  
  9.   
  10. /** 
  11.  * class name:AndroidUtilActivity<BR> 
  12.  * class description:show get sim card info activity<BR> 
  13.  * PS:注意權限 <BR> 
  14.  * Date:2012-3-12<BR> 
  15.  * @version 1.00 
  16.  * @author CODYY)peijiangping 
  17.  */  
  18. public class AndroidUtilActivity extends Activity {  
  19.     private Button button_getSIMInfo;  
  20.     private TextView number;  
  21.     private TextView privoid;  
  22.   
  23.     @Override  
  24.     public void onCreate(Bundle savedInstanceState) {  
  25.         super.onCreate(savedInstanceState);  
  26.         setContentView(R.layout.main);  
  27.         button_getSIMInfo = (Button) this.findViewById(R.id.getSIMInfo);  
  28.         number = (TextView) this.findViewById(R.id.textView1);  
  29.         privoid = (TextView) this.findViewById(R.id.textView2);  
  30.         button_getSIMInfo.setOnClickListener(new ButtonListener());  
  31.     }  
  32.   
  33.     class ButtonListener implements OnClickListener {  
  34.   
  35.         @Override  
  36.         public void onClick(View v) {  
  37.             if (v == button_getSIMInfo) {  
  38.                 SIMCardInfo siminfo = new SIMCardInfo(AndroidUtilActivity.this);  
  39.                 System.out.println(siminfo.getProvidersName());  
  40.                 System.out.println(siminfo.getNativePhoneNumber());  
  41.                 number.setText(siminfo.getNativePhoneNumber());  
  42.                 privoid.setText(siminfo.getProvidersName());  
  43.             }  
  44.         }  
  45.   
  46.     }  
  47. }  

 
  1. package com.pei.activity;  
  2.   
  3. import android.content.Context;  
  4. import android.telephony.TelephonyManager;  
  5.   
  6. /** 
  7.  * class name:SIMCardInfo<BR> 
  8.  * class description:讀取Sim卡信息<BR> 
  9.  * PS: 必須在加入各種權限 <BR> 
  10.  * Date:2012-3-12<BR> 
  11.  *  
  12.  * @version 1.00 
  13.  * @author CODYY)peijiangping 
  14.  */  
  15. public class SIMCardInfo {  
  16.     /** 
  17.      * TelephonyManager提供設備上獲取通訊服務信息的入口。 應用程序可以使用這個類方法確定的電信服務商和國家 以及某些類型的用戶訪問信息。 
  18.      * 應用程序也可以注冊一個監聽器到電話收狀態的變化。不需要直接實例化這個類 
  19.      * 使用Context.getSystemService(Context.TELEPHONY_SERVICE)來獲取這個類的實例。 
  20.      */  
  21.     private TelephonyManager telephonyManager;  
  22.     /** 
  23.      * 國際移動用戶識別碼 
  24.      */  
  25.     private String IMSI;  
  26.   
  27.     public SIMCardInfo(Context context) {  
  28.         telephonyManager = (TelephonyManager) context  
  29.                 .getSystemService(Context.TELEPHONY_SERVICE);  
  30.     }  
  31.   
  32.     /** 
  33.      * Role:獲取當前設置的電話號碼 
  34.      * <BR>Date:2012-3-12 
  35.      * <BR>@author CODYY)peijiangping 
  36.      */  
  37.     public String getNativePhoneNumber() {  
  38.         String NativePhoneNumber=null;  
  39.         NativePhoneNumber=telephonyManager.getLine1Number();  
  40.         return NativePhoneNumber;  
  41.     }  
  42.   
  43.     /** 
  44.      * Role:Telecom service providers獲取手機服務商信息 <BR> 
  45.      * 需要加入權限<uses-permission 
  46.      * android:name="android.permission.READ_PHONE_STATE"/> <BR> 
  47.      * Date:2012-3-12 <BR> 
  48.      *  
  49.      * @author CODYY)peijiangping 
  50.      */  
  51.     public String getProvidersName() {  
  52.         String ProvidersName = null;  
  53.         // 返回唯一的用戶ID;就是這張卡的編號神馬的   
  54.         IMSI = telephonyManager.getSubscriberId();  
  55.         // IMSI號前面3位460是國家,緊接著後面2位00 02是中國移動,01是中國聯通,03是中國電信。   
  56.         System.out.println(IMSI);  
  57.         if (IMSI.startsWith("46000") || IMSI.startsWith("46002")) {  
  58.             ProvidersName = "中國移動";  
  59.         } else if (IMSI.startsWith("46001")) {  
  60.             ProvidersName = "中國聯通";  
  61.         } else if (IMSI.startsWith("46003")) {  
  62.             ProvidersName = "中國電信";  
  63.         }  
  64.         return ProvidersName;  
  65.     }  
  66. }  

 

 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" android:gravity="center">  
  6.   
  7.     <TextView  
  8.         android:id="@+id/textView1"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="TextView" />  
  12.   
  13.     <TextView  
  14.         android:id="@+id/textView2"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:text="TextView" />  
  18.   
  19.     <Button  
  20.         android:id="@+id/getSIMInfo"  
  21.         android:layout_width="wrap_content"  
  22.         android:layout_height="wrap_content"  
  23.         android:text="獲取手機號碼等信息" />  
  24.   
  25. </LinearLayout>  
圖片如下:

 

Copyright © Linux教程網 All Rights Reserved