难以将包含用户经度和纬度的消息从用户发送给好友(消息始终显示 0.0 0.0 作为 lon n lat)

发布于 2024-12-12 05:49:08 字数 450 浏览 0 评论 0原文

我已经编写了一个用于向朋友发送短信的代码,但现在我想向朋友发送经度和纬度。我修改了代码,但它总是向朋友发送“0.0 0.0”作为经度和纬度。代码出了什么问题.任何人都可以帮我解决这个问题吗?

这是我的清单文件:

http://pastebin.com/wLiHDs3A

这是我的 .java 文件: http://pastebin.com/nCmpneB8

这是我的 main.xml 文件:

http://pastebin.com/m52f31eT

I have written a code for sending sms to the friend but now I want to send longitude and latitude to friend.I modified my code but it is always sending " 0.0 0.0 " as longitude and latitude to friend.What is going wrong with the code.Can anyone help me with this?

Here is my manifest file :

http://pastebin.com/wLiHDs3A

Here is my .java file :
http://pastebin.com/nCmpneB8

Here is my main.xml file :

http://pastebin.com/m52f31eT

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最好是你 2024-12-19 05:49:08

你在模拟器上测试这个吗?如果是这样,则 GPS 坐标可能未设置,因此没有任何有效信息可传输。要在模拟器上设置 GPS 坐标,请执行以下操作:

telnet localhost 5554 geo fix <longitude value> <latitude value>

这将在模拟器上设置纬度和经度。然后尝试运行您的应用程序。

Are you testing this out on the emlator? If so, then the GPS coordinates probably aren't set and therefore it has nothing valid to transmit. To set the gps coordinates on your emulator do:

telnet localhost 5554 geo fix <longitude value> <latitude value>

This will set the latitude and longitude on the emulator. Then try running your app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文