Android短信不会发送和只是草稿

时间:2015-08-27 07:58:16

标签: android android-intent service sms

我想在某些情况下发送短信。因此,我必须在服务中这样做。但它刚刚起草。我该如何解决这个问题?

Service.java

   Intent intent = new Intent(Intent.ACTION_VIEW);
   intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
   String smsBody = "test";
   intent.putExtra("sms_body", smsBody);
   intent.putExtra("address", phonenumber);
   intent.setData(Uri.parse("smsto:" + phonenumber));
   context.startActivity(intent);

0 个答案:

没有答案