Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am deleting an SMS from the inbox but I want to know: How can I delete it before it reaches the inbox?

share|improve this question
1  
Is j2ee really a matching tag here? – jitter Nov 16 '09 at 11:42
1  
removed incorrect tags – Martin OConnor Nov 16 '09 at 11:44
3  
This reeks of evil. You shouldn't be doing this. – MattC Nov 17 '09 at 3:14
28  
There are legitimate uses! For example if you want to do something (send GPS location, wipe or something) on your phone via SMS in case it is stolen; you don't want whoever who stole the phone to see that SMS message. – polyglot Aug 4 '10 at 14:15
8  
Come on people! This is definitely NOT "evil" at all. @polyglot is right! I'm doing an application to confirm the user's number (as Viber do) and I need it. Everything can be used as "evil". Don't install evil apps, just that. – Felipe Micaroni Lalli Oct 8 '11 at 0:11
show 3 more comments

4 Answers

Yes.

While there have rightly been negative reactions to this question, there are also legitimate uses for SMS interception. For example: services which are provisioned via SMS (though generally this should be done with data SMS), or for applications which otherwise improve the user experience by processing specially-formatted messages in order to show them in a nice Android-specific UI.

As of Android 1.6, incoming SMS message broadcasts (android.provider.Telephony.SMS_RECEIVED) are delivered as an "ordered broadcast" — meaning that you can tell the system which components should receive the broadcast first.

If you define an android:priority attribute on your SMS-listening <intent-filter>, you will then receive the notification before the native SMS application.

At this point, you can cancel the broadcast, preventing it from being propagated to other apps.

share|improve this answer
10  
Holy god. This is true! I have always assumed it would be the other way around! For proof, look here. Wow. Wish I could give you more than one upvote ;) – Hamy Aug 1 '10 at 16:59
1  
does it work on android 2.2 ? – kakopappa Feb 7 '11 at 6:08
@kakopappa: Yes, as mentioned in the answer it works from Android 1.6+. – Christopher Feb 7 '11 at 14:46
Works Perfectly... thanks. You are a life saver. – KKD Dec 9 '11 at 9:49
1  
This worked for me to :) My app catch message first and there is not notification but then sms is not getting to Messages inbox. Like it was never received, only in my app. Is there a way to use abort broadcast but to receive messages in inbox? – Natasa.M Sep 11 '12 at 21:19
show 5 more comments

The below("android:priority" and abortBroadcast()) solution works as long as Android Messaging application as default(I meant stock Android Messaging application). If user installs "GoSMSPro" or "HandcentSMS", these applications still show messages in inbox, I believe this due to "android:priority". I don't see any better way to fix the above issue, if third party messaging applications installed on the phone.

share|improve this answer
Good point. But this should be a comment, not an answer. Is it possible to move it? --- and what if you put a very high value? As android:priority="9999" ? for example? Have you tried that? – Felipe Micaroni Lalli Oct 8 '11 at 0:14
3  
@FelipeMicaroniLalli actually GO SMS PRO, etc... use 2147483647 for their priority – DDoSAttack Nov 3 '11 at 18:16
@DDoSAttack 2147483647 is the maximum? – Felipe Micaroni Lalli Nov 4 '11 at 4:48
2  
It is the largest unsigned integer en.wikipedia.org/wiki/Integer_(computer_science) the max that Android supports is 999. developer.android.com/reference/android/content/… – DDoSAttack Nov 8 '11 at 22:43

If you have a scenario like this and you want to delete or ignore the message related to this contact number "+44xxxxx" etc, then use this code in SMS Broadcast receiver

 if(sender.equalsIgnoreCase("+44xxxxxx")
   this.abortBroadCast();

You also have to set it the high priority.

share|improve this answer

I hope it's not too late. I answered here how you can delete SMS before it reaches inbox.

share|improve this answer

protected by Community Feb 7 '12 at 12:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.