如何检查 Android 操作系统设备中的 GPS 状态?
我制作了一个带有 GPS 功能的 Android 应用程序(2.2)。但我想检查设备中的 GPS 状态是打开还是关闭。 但不知道如何通过编程来检查。 请就这个问题给我一些建议。
提前致谢。 编辑:
这是位置侦听器的代码
lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
ll = new mylocationlistener();
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, ll);
lm.addGpsStatusListener(this);
private class mylocationlistener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
mLastLocationMillis = SystemClock.elapsedRealtime();
mLastLocation = location;
}
I have made an android applicaiton (2.2) with GPS functionality.But I want to check GPS status in device is it turn on or turn off.
But don't know how to check by programming.
Please give me some advice for this question.
Thanks in advance.
Edit:
Here is the code for location listener
lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
ll = new mylocationlistener();
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, ll);
lm.addGpsStatusListener(this);
private class mylocationlistener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
mLastLocationMillis = SystemClock.elapsedRealtime();
mLastLocation = location;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想您可以在这里找到所有答案:如何检查 GPS 接收器的当前状态?在这里:如何我是否知道 Android 设备的 GPS 是否已启用
I think you can find all the answers here: How can I check the current status of the GPS receiver? and here: How do I find out if the GPS of an Android device is enabled
1) 调用
addGpsStatusListener()
添加您的监听器。2) 在
onGpsStatusChanged()
回调中调用函数 getGpsStatus()或者
如果您对 Sattelite 信息感兴趣。请求 GPS 位置时,您可以在 LocationListener 中获取它 onStatusChanged()
1) Call
addGpsStatusListener()
add your listener to it.2) In the
onGpsStatusChanged()
callback call the function getGpsStatus()OR
If you are interested in Sattelite info. you can get it in the LocationListener when requesting for GPS location onStatusChanged()