简体   繁体   中英

android launch SMS intent without any recipient

我想从我的应用程序中打开Android SMS应用程序,我不想将任何联系人设置为收件人,如何?

Uri uri = Uri.parse("smsto:");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body", "Hello World!");  
startActivity(intent);

note

this way doesn't need any permission in Manifest

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM