Problem while implement location listener in android appwidget(在android appwidget中实现位置监听器时出现问题)
问题描述
我正在开发一个小部件,它将获取当前 GPS 位置并将此值传递给远程 PHP 页面以获取信息并将其显示在小部件中.这就是我想要做的.
I am working on a Widget which will get the Current GPS location and pass this value to remote PHP page to get the Information and display it in the Widget. This is what I am trying to do.
我在为 appWidget 实现位置侦听器时遇到问题.它没有与当前位置一起更新,而是显示初始小部件,即正在加载小部件"(我在这里放置此文本)
I am facing problem while implementing Location Listener for appWidget. It is not updating with the Current Location and It is showing the initial widget i.e "Loading Widget"(Here I put this text)
我们可以为 AppWidgetProvider 实现位置监听器吗?
或者
您能否建议我在 App Widget 中获取 GPS 位置的可能解决方案?
我在清单文件中放置了所有必要的权限.
这是我的代码片段:
<代码>
I placed all necessary permissions in Manifest file.
Here is my code snippet:
在此先感谢...
问候,Raghavendra K.
With Regards, Raghavendra K.
推荐答案
你是在模拟器还是在设备上遇到这个问题?如果在模拟器上,请确保使用 DDMS 设置 GPS 位置.但最简单的做法可能是在设备上运行您的代码,看看您是否以这种方式获得 GPS 更新.
Are you having this problem in the emulator or on a device? If on the emulator, make sure you use DDMS to set a GPS location. But the easiest thing to do might be to run your code on a device to see if you get GPS updates that way.
这篇关于在android appwidget中实现位置监听器时出现问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!