使用Intent Android发送短信后返回我的应用程序

时间:2019-02-12 13:01:56

标签: android android-intent

我正在使用意图发送短信。

 Intent intent = new Intent(Intent.ACTION_SENDTO);
 intent.setData(Uri.parse("smsto:" + phoneNumber));
 intent.putExtra("address", phoneNumber);
 intent.putExtra("sms_body", messageBody);
 intent.putExtra("exit_on_sent", true);
 startActivityForResult(intent, 6789);
  1. 如何使其 返回到我的应用程序 并显示结果?目前,它停留在“邮件”视图中。
  2. 是否有广播接收者知道短信是否已发送或传递?

0 个答案:

没有答案