プログラムでMMSを送信したいのですが、次のコードを使用しました
Intent sendIntent1 = new Intent(Intent.ACTION_SEND);
try {
sendIntent1.setType("text/x-vcard");
sendIntent1.putExtra("address","0475223091");
sendIntent1.putExtra("sms_body","hello..");
sendIntent1.putExtra(Intent.EXTRA_STREAM,
Uri.parse(vcfFile.toURL().toString()));
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
startActivity(sendIntent1);
問題は、メッセージの作成ページに移動することであり、手動で SMS を送信する必要があるため、通知なしで送信する必要はありません。どうすればよいですか??
誰か答えを教えてください