SMS を受信者に送信しようとしているアプリを作成していますが、[送信] をクリックするとメッセージが表示されます:- SMS が失敗しました。後でもう一度やり直してください!
私はエミュレータまたはAndroidデバイスを使用しています....
下のスクリーン ショットでわかるように、ここでは、電話帳の連絡先に保存されている Pratik にメッセージを送信しようとしていますが、Pratik にメッセージを送信しようとすると、いつでも Pratik にメッセージを送信できません。
以下のスクリーンショットをご覧ください。ご覧のとおり、ここで私はRahulにメッセージを送信しようとしています...
マニフェスト.xml:
<uses-permission android:name="android.permission.SEND_SMS" />
以下のコードを確認してください。
    private TextView name;
private ListView list;
private Database db;
private Contact contact;
ImageButton buttonSend;
EditText textSMS;
     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 = (ImageButton) findViewById(R.id.buttonSend);
    textSMS = (EditText) findViewById(R.id.editTextSMS);
    buttonSend.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
          String sms = textSMS.getText().toString();
          try {
            SmsManager smsManager = SmsManager.getDefault();
            smsManager.sendTextMessage(CONTACT_ID, 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();
          }
        }
    });
}