我有一些代码用于向用户通过按下按钮输入的号码发送短信。但是,当消息发送时,它不会显示在他们的消息收件箱中,因此他们不知道它是否准确发送。有什么办法可以更改下面的文本以将所有短信保存到用户收件箱?谢谢!
这是我的代码:
buttonSend.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String phoneNo = textPhoneNo.getText().toString();
String sms = textSMS.getText().toString();
try {
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, sms, null, null);
Toast.makeText(getApplicationContext(), "Message Sent!", Toast.LENGTH_LONG).show();}
catch (Exception e) {
Toast.makeText(getApplicationContext(),
"Unable to send message",
Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
});
}