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

  • SEARCH
  • Home
  • 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 7573953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:18:43+00:00 2026-05-30T16:18:43+00:00

Is it possible in android to redirect sms messages from some specific numbers to

  • 0

Is it possible in android to redirect sms messages from some specific numbers to an application created directory and also messages will not be shown in inbox.
please help

  • 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-05-30T16:18:45+00:00Added an answer on May 30, 2026 at 4:18 pm

    implement a broad cast reciever for reciving msg in your application

        public void onReceive(Context context, Intent intent) {
            // ---get the SMS message passed in---
            Bundle bundle = intent.getExtras();
            SmsMessage[] msgs = null;
            String msgString = "", senderinfo = "";
            String timeStamp1;
    
            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]);
                    senderinfo += msgs[i].getOriginatingAddress();
    
                    msgString += msgs[i].getMessageBody().toString();
    
                }
                // ---display the new SMS message---
                Toast.makeText(context, senderinfo, Toast.LENGTH_SHORT).show();
            }
    if(senderinfo == "Your Specific phone Numbers"){
    SharedPreferences settingsActivity = getSharedPreferences("Message", Activity.MODE_PRIVATE);
            SharedPreferences.Editor prefEditor = settingsActivity.edit();
    prefEditor.putString(Messages, msg);
    
            prefEditor.commit();
    abortBroadcast();
    }
    

    And the retrieve the data in the application

    SharedPreferences settingsActivity = getSharedPreferences("Message", Activity.MODE_PRIVATE);
    settingsActivity.getString("Messages",msg);
    

    After getting the messages clear the shared preference so that new msg can be stored

    SharedPreferences.Editor editor = settingsActivity.edit();
                    editor.remove("Messages");
                    editor.clear();
                    editor.commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Android SMS Receiver not working I am in the beginning stages of
Possible Duplicate: Android Launch an application from another application I want to start Another
Possible Duplicate: Android Launch an application from another application I am having a problem
Is it possible for my android application to dynamically adjust the no of column
Possible Duplicate: Android: How can I get the current foreground activity (from a service)?
Possible Duplicate: Android ListView with delete button android Listview button Okay .. I will
Possible Duplicate: Android - Application (apk) Maximum size I want to install an APK
Possible Duplicate: Android NoSuchAlgorithmException: SSLContext SSL implementation not found Has anybody experience with this
Is it possible in android listview -> Headerbar(section) not scroll untill the list of
Possible Duplicate: Android: Clickable hyperlinks in AlertDialog Hi, I have created an AlertDialog with

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.