我有点困惑。我认为以下API用于将消息从模拟器的一个实例发送到另一个实例。它还可以在真正的手机上发送短信吗?
SmsManager sm = SmsManager.getDefault();
sm.sendTextMessage(destinationAddress, null, "Hello world", null, null, null);
答案 0 :(得分:0)
是。这也适用于此处的实际设备sm.sendTextMessage(destinationAddress, null, "Hello world", null, null, null);
destinationAddress 必须使用引号,例如“1234567890”和“Hello world”将是送到目的地号码。