标签: android
我想在我的应用中发送消息,但我不想在Manifest中使用权限(send_sms)。
我想使用(Intent)发送消息。
答案 0 :(得分:1)
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("sms:" + phoneNumber)));
Send SMS in android