Android: 接收短信

Android: Receive SMS

我是 Android 的新手。

我想在收到短信时触发一些代码。 以下代码有效,但我无法理解它是如何工作的:

package net.learn2develop.SMSMessaging;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.gsm.SmsMessage;
import android.widget.Toast;

public class SmsReceiver extends BroadcastReceiver
    {
    @Override
    public void onReceive(Context context, Intent intent) 
    {
        //---get the SMS message passed in---
        Bundle bundle = intent.getExtras();        
        SmsMessage[] msgs = null;
        String str = "";            
        if (bundle != null)
        {
            //---retrieve the SMS message received---
            Object[] pdus = (Object[]) bundle.get("pdus");
            msgs = new SmsMessage[pdus.length];            
            for (int i=0; i<msgs.length; i++){
                msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);                
                str += "SMS from " + msgs[i].getOriginatingAddress();                     
                str += " :";
                str += msgs[i].getMessageBody().toString();
                str += "\n";        
            }
            //---display the new SMS message---
            Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
        }                         
    }
}

bundle.get("pdus");在此 'pdus' 表示协议数据单元,它是 SMS 消息的行业格式。因为 SMSMessage reads/writes 它们你不需要分解它们。

  • 一条大消息可能会被分成很多条,这就是为什么它是一个对象数组的原因。首先它会从您的收件箱中获取所有短信,并将其一条一条地存储在 msgs 对象中
  • createFromPdu 我们需要写这一行,因为每条短信可能来自同一发件人,也可能不同。
  • getDisplayOriginatingAddress()Returns 原始地址但已弃用。

  • getMessageBody() 给你消息的内容 我希望这能让您了解代码的工作原理

    希望你能找到你要找的东西。