我想将语音留言发送到另一个号码。我试过了
Intent sendIntent = new Intent(Intent.ACTION_SEND).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
sendIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
sendIntent.putExtra("address", "5556");
sendIntent.putExtra("sms_body", "if you are sending text");
final File file1 = new File(outputFile);
Uri uri = Uri.fromFile(file1);
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
sendIntent.setType("Audio/mp3");
startActivity(sendIntent);
但它会转到默认语音留言。但我需要通过我的应用发送语音留言。