微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐