Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to send sms.

What is the intent for SMS sending...or any other code? I want to show compose sms view with my pre-define text passing over in message field.

Is there any help for that?

share|improve this question
You should read this acticle for full story. – Nguyen Minh Binh Jul 18 '11 at 15:58
I am doing something similar HERE!!! stackoverflow.com/questions/14452808/… – toobsco42 Jan 22 at 7:55

6 Answers

up vote 56 down vote accepted

You can use the following code:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("sms:"
                        + phoneNumber)));

Make sure you set phoneNumber to the phone number that you want to send the message to

share|improve this answer
36  
thanks for your code. and i want to add, as i need to put my predefine text. I got this solution Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:" + phoneNumber ) ); intent.putExtra( "sms_body", message ); startActivity( intent ); – djk Feb 11 '11 at 10:39
glad... this helped u.... – Ads Mar 9 '11 at 12:55
how to set "phoneNumber" from contact list? – Mr-Moqadam Sep 25 '12 at 11:25
@djk thanks i want to Read all contacts and want own page for sending sms with auto complete but i am not able to read contacts any good tutorial ? – Guru Oct 1 '12 at 12:59
I would use the default sms compose widget for doing it. just leave the phone number empty (it's optional) – shem Mar 11 at 16:31
show 1 more comment

This is works for me.

public void onCreate(Bundle savedInstanceState)
{
     super.onCreate(savedInstanceState);
      setContentView(R.layout.main);
     btnSendSMS = (Button) findViewById(R.id.btnSendSMS);
      btnSendSMS.setOnClickListener(new View.OnClickListener()
      {
         public void onClick(View v)
         {
             sendSMS("5556", "Hi You got a message!");

                       /*here i can send message to emulator 5556. In Real device 
                                                               you can change number  */

          }
      });
   }
  //---sends an SMS message to another device---

   private void sendSMS(String phoneNumber, String message)
   {
       SmsManager sms = SmsManager.getDefault();
       sms.sendTextMessage(phoneNumber, null, message, null, null);
    }

}

You can add this line in AndroidManifest.xml

<uses-permission android:name="android.permission.SEND_SMS"/>

Take a look at this

This may helpful for you.

share|improve this answer

Hi let's try the below code..and design your layout with edittext and and send button and place the sendSMS("99999999999", "message"); in sendbutton click event.

class A extends Activity
{
Oncreate()
{
  editText = (EditText) findViewById(R.id.message);
  sendBtn  =  (Button)findViewById(R.id.send);

sendBtn  .setonclickListener(new OnClickListener(){
public void Onclick(){
 sendSMS("99999999999", "message");
}
});

}

//---sends an SMS message to another device---
    @SuppressWarnings("deprecation")
    private void sendSMS(String phoneNumber, String message)
    {        
        Log.v("phoneNumber",phoneNumber);
        Log.v("MEssage",message);
        PendingIntent pi = PendingIntent.getActivity(this, 0,
            new Intent(this, **DummyClasshere.class**), 0);                
        SmsManager sms = SmsManager.getDefault();
        sms.sendTextMessage(phoneNumber, null, message, pi, null);        
    }    

}

Place the permission uses-permission android:name="android.permission.SEND_SMS" in android manifest file, i hope it may help you a little...

share|improve this answer
what's the dummyclass for? thanks – cV2 Feb 25 '11 at 11:12
something an activity without doing any process.or else the class in which u need to navigate.. – Senthil Mg Feb 25 '11 at 11:48
I use Object.class for dummy class and it works. – diewland Mar 1 '11 at 5:07

This will definitely work, In this, Send message without using any intent .

SmsManager smsManager =     SmsManager.getDefault();
smsManager.sendTextMessage("Phone Number", null, "Message", null, null);

This code is used for send message in background (Not showing message composer), It can also work inside the Broadcast receiver. If you want to send a message from Broadcast receiver.

   <uses-permission android:name="android.permission.SEND_SMS"/>
share|improve this answer
1  
+1. Worked for my requirement. But I am missing one thing. This message does not appear in my sent items. Why is that so? – Tahir Akram Apr 2 at 14:22
We have not used the default Inten process for sms sending, we are just using the Sms Manager. Intent will meet for maintaining the log of the SmsManager. – Ashish Dwivedi Apr 3 at 4:27
Yes. This is very useful to me. But the confirmation message given after sending sms means it could be better. – Gunaseelan Apr 11 at 11:17

In Android , we have the class SmsManager which manages SMS operations such as sending data, text, and pdu SMS messages. Get this object by calling the static method SmsManager.getDefault().

SmsManager Javadoc

Check the following link to get the sample code for sending SMS:

article on sending and receiving SMS messages in Android

share|improve this answer

Some of what is explained above is meant only for placing an SMS in a 'ready to launch' state. as Senthil Mg said you can use sms manager to send the sms directly but SMSManager has been moved to android.telephonySmsManager.

I know it's not a lot of more info, but it might help someone some day.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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