在android中有选项可以立即使用代码进行调用,并且可以选择将用户移动到带有号码的来电应用程序,然后让他自己打电话。 我有一个代码可以将用户移动到内容就绪的短信应用程序:
Uri smsUri = Uri.parse("sms:0542158081");
Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);
intent.putExtra("sms_body", Text);
startActivity(intent);
但是我想立即从代码中发送短信,而不是等待用户。 我该怎么办?
答案 0 :(得分:0)
用户SmsManager所以
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage("phoneNumber", null, "sms message", null, null);