我想在我的Android应用程序中发送消息,但我不想使用Send_SMS权限。我想使用Intent发送消息

时间:2015-10-19 19:38:03

标签: android

我想在我的应用中发送消息,但我不想在Manifest中使用权限(send_sms)。

我想使用(Intent)发送消息。

1 个答案:

答案 0 :(得分:1)

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("sms:"
                        + phoneNumber)));

Send SMS in android