标签: java android android-intent
我想从我的应用程序中打开Android SMS应用程序,我不想将任何联系人设置为收件人,如何?
答案 0 :(得分:12)
Uri uri = Uri.parse("smsto:"); Intent intent = new Intent(Intent.ACTION_SENDTO, uri); intent.putExtra("sms_body", "Hello World!"); startActivity(intent);
这种方式不需要Manifest
Manifest