缥缈止盈
如果你不得不发送任何图像的MMS然后使用以下代码。Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
sendIntent.putExtra("sms_body", "some text"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("
sendIntent.setType("image/png");startActivity(sendIntent);;或如果你不得不发送带有音频或视频的MMS文件使用意图,然后使用这个。Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
sendIntent.putExtra("address", "1213123123");sendIntent.putExtra("sms_body", "if you are sending text");
final File file1 = new File(mFileName);if(file1.exists()){
System.out.println("file is exist");}Uri uri = Uri.fromFile(file1);sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
sendIntent.setType("video/*");startActivity(sendIntent);如果这对你有帮助的话请告诉我。