Android从模拟器发送传出短信

时间:2013-12-20 22:18:14

标签: android sms telnet

我正在研究#Android应用程序,我知道使用#Telnet会让我模拟将传入的短信发送到模拟器。有谁知道是否可以从模拟器发送传出的短信?

1 个答案:

答案 0 :(得分:0)

这就是你想要的吗?

发送短信的代码

PendingIntent pi = PendingIntent.getActivity(this, 0,
        new Intent(this, SMS.class), 0);                
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi, null);

使用模拟器编号(设备的左上角,例如5554,5556),您可以执行此操作。输入此号码作为电话号码并发送信息。

另见: Send a message from one Android emulator to another?