持续发送GPS数据到Android模拟器
我正在为 Android 编写一个应用程序,它将使用 GPS 接收器测量 Android 设备移动时的速度。我知道我可以远程登录到 Android 模拟器并使用“geo fix”命令发送地理坐标。但我想知道的是,有没有办法不断发送地理修复数据来模拟汽车在街道上行驶?否则,我还能如何测试我的应用程序?
I am writing an app for Android that will measure speed as the Android device is moving, using the GPS receiver. I know I can telnet into the Android emulator and send Geo coordinates using the "geo fix" command. What I want to know though, is there a way to continually send geo fix data to simulate a car moving down a street? Otherwise, how else can I test my application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您好,在我的第一个基于 GPS 的项目中,我遇到了同样的问题,所以我编写了一个 java 代码,将 GPS Fix 发送到我的 android 模拟器,下面是代码片段
Hi in my first GPS based project I faced the same problem so I write a java code that will send GPS Fix to my android emulator below is the snippet
编写应用程序并将 apk 文件安装在支持 GPS 的 Android 手机中。您可以看到 Android 手机从一个地方移动到另一个地方的大致速度。
write the application and install the apk file in a GPS enabled android mobile. you can see the approximate speed at which the android mobile is moving from place to place.
您可以使用 javassh 之类的库以编程方式将 telnet 命令发送到模拟器。
You can use a library like javassh to programmatically send the telnet commands to the emulator.