难以将包含用户经度和纬度的消息从用户发送给好友(消息始终显示 0.0 0.0 作为 lon n lat)
我已经编写了一个用于向朋友发送短信的代码,但现在我想向朋友发送经度和纬度。我修改了代码,但它总是向朋友发送“0.0 0.0”作为经度和纬度。代码出了什么问题.任何人都可以帮我解决这个问题吗?
这是我的清单文件:
这是我的 .java 文件: http://pastebin.com/nCmpneB8
这是我的 main.xml 文件:
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 :
Here is my .java file :
http://pastebin.com/nCmpneB8
Here is my main.xml file :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在模拟器上测试这个吗?如果是这样,则 GPS 坐标可能未设置,因此没有任何有效信息可传输。要在模拟器上设置 GPS 坐标,请执行以下操作:
这将在模拟器上设置纬度和经度。然后尝试运行您的应用程序。
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:
This will set the latitude and longitude on the emulator. Then try running your app.