我可以使用两个仿真器测试MMS代码吗?启用MMS是否需要任何服务提供商?

Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("address", 5556);
sendIntent.putExtra("sms_body", "Hi");
Uri uri = Uri.fromFile(new File(Environment.getExternalStorageDirectory().getPath()+"/img.png"));
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
sendIntent.setType("image/*");
startActivity(Intent.createChooser(sendIntent, "Send Image To:"));

最佳答案

根据Android SDK Release Notes


  无法在仿真器实例之间发送MMS消息。

关于android - 模拟器中2个Android设备之间的MMS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5431814/

10-10 18:35