本文介绍了发送和接收文本使用Android模拟器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在开发的Android应用程序,其中包括短信。是否可以发送和接收正好短信使用Android模拟器?如果是的话,我该怎么办呢?
I'm currently developing android application which includes text messaging. Is it possible to send and receive text messages just by using android emulator? If yes, how can I do it?
推荐答案
这是很容易的:
- 打开一个控制台
- 通过telnet连接到正在运行的仿真器:
远程登录本地主机5554
(您可以在模拟器的称号端口号) - 输入:
手机短信发送senderPhoneNumber的TextMessage
- open a console
- connect via telnet to the running emulator:
telnet localhost 5554
(you can find the portnumber in the title of the emulator) - type this:
sms send senderPhoneNumber textmessage
这篇关于发送和接收文本使用Android模拟器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!