如何分析Android上传入的短信?

时间:2011-01-09 05:19:12

标签: android sms

我如何在Android中进行编码,以便我的应用可以分析传入的短信并可能阻止它或做某事(可能移动到不同的短信文件夹)在短信实际上发出通知告诉用户新的短信之前?我的目标是Android 2.1及更高版本。

我想分析用户指定垃圾邮件字的传入短信,如果找到则要删除/标记为已读/将邮件移至其他文件夹。

3 个答案:

答案 0 :(得分:24)

我使用此代码作为BroadcastReceiver:

public void onReceive(Context context, Intent intent) 
{   
    //this stops notifications to others
    this.abortBroadcast();

    //---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();
            from = msgs[i].getOriginatingAddress();
            str += " :";
            str += msgs[i].getMessageBody().toString();
            msg = msgs[i].getMessageBody().toString();
            str += "\n"; 
        }
        if(checksomething){
            //make your actions
            //and no alert notification and sms not in inbox
        }
        else{
            //continue the normal process of sms and will get alert and reaches inbox
            this.clearAbortBroadcast();
        }
  }

记得在清单中添加它并为广播添加最高优先级(100),短信将首先进入收件箱并获取警报通知。

    <receiver android:name=".SmsReceiver">
        <intent-filter android:priority="100">
            <action android:name="android.provider.Telephony.SMS_RECEIVED"></action>
        </intent-filter>
    </receiver>

希望它对你有所帮助。

答案 1 :(得分:0)

你可以捕获传入的短信,但我想你将无法阻止通知.....
如果你想删除短信,这里有一个可以帮助的线程.... How to delete an SMS from the inbox in Android programmatically?

答案 2 :(得分:0)

此代码适用于我的2.3.3设备。 HTC MyTouch 4g幻灯片。 abortBroadcast抑制状态栏+上的notificationsound +通知+不允许SMS进入收件箱。 有些用户提到它不能在真实设备上运行,只能在模拟器上运行,但情况并非总是如此。如果优先级为100,则在此特定设备上,代码按预期工作。