我正在尝试使用我的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时,它无法正常工作
答案 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权限