My app is unable to open the Message app on my phone when I send an image via MMS:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setData(Uri.parse("smsto: "));
intent.putExtra("sms_body", "");
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(ten));
if (intent.resolveActivity(getPackageManager()) != null)
{
startActivity(intent);
}
But if I change this code to a sending SMS message code, the Message app will show up and allow users to send a message, but with MMS, it won't.
Have I done anything wrong?