ユーザーの介入なしで画像付きのテキストメッセージを送信する方法
short SMS_PORT = 15005;
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, sms, null, null);
smsManager.sendDataMessage("5556",null,SMS_PORT,bFile,null,null);
//bFile is a Image byte Array which is stored in sdcard
テキスト メッセージは正常に送信されるが、画像が送信されない