android java intent putextra sms不适用于jio4gvoice

时间:2017-05-22 04:48:38

标签: android android-intent sms

我正在尝试使用我的Android应用程序发送短信  Uri uri = Uri.parse("smsto:"+number); Intent it = new Intent(Intent.ACTION_SENDTO, uri); it.putExtra("sms_body", "Here you can set the SMS text to be sent"); startActivity(it); 当我选择jio4gvoice时,它无法正常工作

1 个答案:

答案 0 :(得分:0)

试试这个我希望这项工作

 startActivity(new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", number, null)));

SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage(number, null, msg, null, null);

注意:第二种方法 SEND_SMS权限