我只需要监控GPS接收器或适配器的状态,因为如果用户手动禁用gps,我的应用程序不想工作......
尝试使用此链接中的信息,但没有帮助 - How can I monitor the status of the GPS adapter using Android SDK?
任何想法该怎么做?
答案 0 :(得分:0)
要检查GPS的可用性,您可以使用以下代码
LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
if(!locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
//gps off. User turned the GPS off manually.
}
答案 1 :(得分:0)
boolean gpSstate = locationManager.isProviderEnabled( LocationManager.GPS_PROVIDER);
boolean networkState =locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if(!gpsState && !networkState) {// no GPS Service }