標籤:
1、首先我們要寫一個廣播接收器,當我們的手機收到簡訊時,系統會自動發送一個廣播,我們只需要接收到這條廣播就可以了
2、在廣播裡面,我們重寫的onReceive()方法,通過裡面的Intent寫到的Bundle就可以拿到簡訊的內容,
3、資訊清單檔裡面我們必須要添加許可權,否則無法接收到。
4、為了防止我們的廣播接收不到,我們自己寫的廣播接收器的許可權必須要大,以防萬一,我設定了1000。
下面上代碼,裡面的注釋也比較詳細..
1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.fanlei.cutnotedemo" > 4 5 //接收簡訊 6 <uses-permission android:name="android.permission.RECEIVE_SMS"/> 7 <application 8 android:allowBackup="true" 9 android:icon="@drawable/ic_launcher"10 android:label="@string/app_name"11 android:theme="@style/AppTheme" >12 <!-- action:name = 的名稱是固定的 -->13 <receiver android:name=".NoteReceiver">14 <intent-filter android:priority="1000">15 <action android:name="android.provider.Telephony.SMS_RECEIVED"/>16 </intent-filter>17 </receiver>18 <activity19 android:name=".MainActivity"20 android:label="@string/app_name" >21 <intent-filter>22 <action android:name="android.intent.action.MAIN" />23 24 <category android:name="android.intent.category.LAUNCHER" />25 </intent-filter>26 </activity>27 </application>28 </manifest>
寫一個類,繼承BroadcastReceiver
1 package com.example.fanlei.cutnotedemo; 2 3 import android.content.BroadcastReceiver; 4 import android.content.Context; 5 import android.content.Intent; 6 import android.os.Bundle; 7 import android.telephony.SmsMessage; 8 import android.widget.Toast; 9 10 import java.text.SimpleDateFormat;11 import java.util.Date;12 13 /**14 * 廣播接收器15 */16 public class NoteReceiver extends BroadcastReceiver {17 18 private static final String SMS_RECEIVED_ACTION = "android.provider.Telephony.SMS_RECEIVED";19 @Override20 public void onReceive(Context context, Intent intent) {21 String action = intent.getAction();22 //判斷廣播訊息23 if (action.equals(SMS_RECEIVED_ACTION)){24 Bundle bundle = intent.getExtras();25 //如果不為空白26 if (bundle != null){27 //將pdus裡面的內容轉化成Object[]數組28 Object pdusData[] = (Object[]) bundle.get("pdus");29 //解析簡訊30 SmsMessage[] msg = new SmsMessage[pdusData.length];31 for (int i = 0;i < msg.length;i++){32 byte pdus[] = (byte[]) pdusData[i];33 msg[i] = SmsMessage.createFromPdu(pdus);34 }35 StringBuffer content = new StringBuffer();//擷取簡訊內容36 StringBuffer phoneNumber = new StringBuffer();//擷取地址37 StringBuffer receiveData = new StringBuffer();//擷取時間38 //分析簡訊具體參數39 for (SmsMessage temp : msg){40 content.append(temp.getMessageBody());41 phoneNumber.append(temp.getOriginatingAddress());42 receiveData.append(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS")43 .format(new Date(temp.getTimestampMillis())));44 }45 /**46 * 這裡還可以進行好多操作,比如我們根據手機號進行攔截(取消廣播繼續傳播)等等47 */48 Toast.makeText(context,phoneNumber.toString()+content+receiveData, Toast.LENGTH_LONG).show();//簡訊內容49 }50 }51 }52 }
Android--擷取簡訊的內容,截取簡訊