HTCデバイス(2.3.5、HTC Desire HD-Sense)を使用してMMS経由でjpg画像を送信しようとしていますが、次のスニペットを使用しています
File sendfilepath = new File("file://" + sendfile);
Uri urimms = Uri.fromFile(sendfilepath);
Intent sendIntent = new Intent("android.intent.action.SEND_MSG");
sendIntent.putExtra(Intent.EXTRA_STREAM, urimms);
sendIntent.setType("image/jpeg");
startActivity(sendIntent);
メッセージングアプリを開きますが、画像は添付されません。何故かはわからない?トースト「メッセージを読み込めません」が表示されます