问题描述
|
我只需要监视GPS接收器或适配器的状态,如果用户手动禁用了gps,则导致我的应用程序不想工作...
试图使用此链接中的信息,但没有帮助-如何使用Android SDK监视GPS适配器的状态?
有什么想法怎么办?
解决方法
要检查GPS的可用性,您可以使用以下代码
LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
if(!locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
//gps off. User turned the GPS off manually.
}
, boolean gpSstate = locationManager.isProviderEnabled( LocationManager.GPS_PROVIDER);
boolean networkState =locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if(!gpsState && !networkState) {// no GPS Service }