android-发送短信给收件人

我正在编写一个应用程序,试图在该应用程序中向接收方发送短信,但是每当我单击发送时,都会收到消息:-短信发送失败,请稍后再试!

请看下面的屏幕截图,就像您看到的一样,在这里我正尝试向Rahul发送消息…

Manifest.xml:

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

请检查以下代码

       private TextView name;
private ListView list;
private Database db;
private Contact contact;
Button buttonSend;
EditText textSMS;

private Map<String, AuthenticatorDescription> map = new LinkedHashMap<String, AuthenticatorDescription>();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.editor);

    // bind GUI components
    this.name = (TextView) findViewById(R.id.editor_name);
    this.list = (ListView) findViewById(R.id.editor_list);

    // check if contact id is valid
    this.db = new Database(getContentResolver());
    int contactId = getIntent().getIntExtra(CONTACT_ID, NO_CONTACT_ID);
    this.contact = this.db.getContact(contactId);
    if (this.contact == null) {
        finish();
    }
    this.name.setText(this.contact.getName());

    // pre-load information about all account types
    AuthenticatorDescription[] authTypes = AccountManager.get(this).getAuthenticatorTypes();
    for (AuthenticatorDescription authDesc : authTypes) {
        this.map.put(authDesc.type, authDesc);
    }

    // bind list events
    this.list.setonItemClickListener(this);
    this.list.setonCreateContextMenuListener(this);

    // create the GUI
    updateView();



    saveGreeting = (ImageButton) findViewById(R.id.greeting);
    saveGreeting.setonClickListener(new OnClickListener() {
        public void onClick(View v) {
            customGreeting(v);
        }
    });
    buttonSend = (Button) findViewById(R.id.buttonSend);
    textSMS = (EditText) findViewById(R.id.editTextSMS);
    buttonSend.setonClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

          String recepient = name.getText().toString();
          String sms = textSMS.getText().toString();

          try {
            SmsManager smsManager = SmsManager.getDefault();
            smsManager.sendTextMessage(recepient, null, sms, null, null);
            Toast.makeText(getApplicationContext(), "SMS Sent!",
                        Toast.LENGTH_LONG).show();
          } catch (Exception e) {
            Toast.makeText(getApplicationContext(),
                "SMS faild, please try again later!",
                Toast.LENGTH_LONG).show();
            e.printstacktrace();
          }

        }
    });
}

解决方法:

阿米特

告诉我你在哪里检查
在模拟器中,短信不会发送

仅在实际设备中发送

请检查以下提到的链接

它正常工作

1)http://mobiforge.com/developing/story/sms-messaging-android

2)http://katharnavas.wordpress.com/2009/10/07/how-to-send-sms-from-android-programatically/

3)http://saga-androidapplication.blogspot.in/2011/06/how-to-send-and-receive-message-using.html

4)http://www.java-samples.com/showtutorial.php?tutorialid=1540

5)http://codeoncloud.blogspot.in/2012/06/send-sms-from-android-application.html

让我告诉您您是否仍然遇到任何问题

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...