Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8682765
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:51:40+00:00 2026-06-12T21:51:40+00:00

Possible Duplicate: Can we delete an SMS in Android before it reaches the inbox?

  • 0

Possible Duplicate:
Can we delete an SMS in Android before it reaches the inbox?

I’ve already gotten receive SMS code running successfully. What I cannot determine is a way (or if it’s possible) to process messages sent from specific phone numbers within my app without them being made visible to the user. All other SMS’s sent from other phone number would be handled by the normal Android SMS processing. I.e., SMS’s from selected numbers should not be visible to the phone user and the rest should. Any suggestions?

Here’s the SMSReceiver code (taken straight from Wei-Meng Lee’s book):

public class SMSReceiver extends BroadcastReceiver {
    @Override
        public void onReceive(Context context, Intent intent) {
            //get the received SMS message
        Bundle bundle = intent.getExtras();
            SmsMessage[] msgs = null;
            String str = "";
            if (bundle != null) {
                // retrieve the SMS message 
                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 += "\nMessage Text:\n";
                    str += msgs[i].getMessageBody().toString();
                    str += "\nLength="+msgs[i].getMessageBody().toString().length()+"\n";
                }  // [END FOR]
            // display the new SMS message
            Toast.makeText(context, str, Toast.LENGTH_SHORT).show();            
            // send a broadcast intent to update the SMS received in the activity
            Intent broadcastIntent = new Intent();
            broadcastIntent.setAction("SMS_RECEIVED_ACTION");
            broadcastIntent.putExtra("sms", str);
            context.sendBroadcast(broadcastIntent);
        }  // [END IF]
    }  // [END onReceive]
}  // [END SMSReceiver]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T21:51:42+00:00Added an answer on June 12, 2026 at 9:51 pm

    well if you put an if before you start concatenating str, you can check the originating address, and compare it to your blacklist of addresses, if its on the list, then simply use the continue to skip the concatenations

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Can we delete an SMS in Android before it reaches the inbox?
Possible Duplicate: android calendar delete event Actually i write a code for inserting and
Possible Duplicate: C++ delete - It deletes my objects but I can still access
Possible Duplicate: Can I scroll a ScrollView programmatically in Android? I have a chat
Possible Duplicate: Any reason to overload global new and delete? In c++ you can
Possible Duplicate: C++ delete - It deletes my objects but I can still access
Possible Duplicate: SQL Delete: can't specify target table for update in FROM clause I
Possible Duplicate: How can I delete a file pointed to by a FILE* in
Possible Duplicate: PHP: Is there a command that can delete the contents of a
Possible Duplicate: How to delete a zip file using php How can I remove

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.