如果你不得不發(fā)送任何圖像的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);;
或
如果你不得不發(fā)送帶有音頻或視頻的MMS文件使用意圖,然后使用這個(gè)。
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);
如果這對你有幫助的話請告訴我。