編輯:關於android開發
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 <activity 19 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 @Override 20 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開發自學筆記—1.1(番外)AndroidStudio常用功能介紹,androidstudio自學一、界面區介紹 1、項目組織結構區,用於浏覽項目文件,默
實現控件的拖拽,實現控件拖拽如圖是效果圖,移動ImageView時ImageView的位置會發生改變,並且雙擊的時候ImageView會水平居中 pac
Android動畫三部曲之一 View Animation & LayoutAnimation Tween動畫 Tween動畫又稱補間動畫。通過對view的位
記CBS一次動人心魄的數據保衛戰接觸分布式存儲已經有一年多的時間了,首次遇到存儲側三份數據都有異常的情況,三份數據異常意味著客戶數據的丟失,這個對雲存儲來講是致命的打擊。