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

To send SMS I wrote below code:

package com.sendsms;

import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class SendsmsActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button new_btn = (Button)findViewById(R.id.send_btn);
        new_btn.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View v) {
                SmsManager sms = SmsManager.getDefault();
                sms.sendTextMessage("+8615959762862", null, "i love you", null, null);    
            }
        });
    }
}

The stack:

ISms$Stub$Proxy.sendText(String, String, String, PendingIntent, PendingIntent) line: 443    
SmsManager.sendTextMessage(String, String, String, PendingIntent, PendingIntent) line: 87   
SendsmsActivity$1.onClick(View) line: 23    
Button(View).performClick() line: 2408  
share|improve this question

1 Answer

up vote 6 down vote accepted

Make Sure you Declare

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

In your Manifest

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.