AndroidでMMSを送信するにはどうすればよいですか?
次のようにUIを使用した私のコード:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("address", "5556");
intent.putExtra("sms_body", "Gudmng !!");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File("/sdcard/sky.png"));
intent.putExtra(Intent.EXTRA_STREAM, uri); // imageUri set
intent.setType("image/*")
startActivity(intent);
しかし、それでもMMSの送信には例外があります
ERROR/HierarchicalStateMachine(68): TetherMaster - unhandledMessage: msg.what=3
ヘルプはありますか?