如何检查我是否在Android 4.4及以上版本中以编程方式打开gps( [重复])

亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述如何检查我是否在Android 4.4及以上版本中以编程方式打开gps? [重复]相关的知识,希望能为你提供帮助。
这个问题在这里已有答案:

  • How do I get the current GPS location programmatically in Android? 22回答
我曾尝试在线搜索答案,但它们似乎只适用于android 4.0及更低版本
答案
public static boolean isLocationEnabled(Context context) { int locationMode = 0; String locationProviders; if (Build.VERSION.SDK_INT > = Build.VERSION_CODES.KITKAT){ try { locationMode = Settings.Secure.getInt(context.getContentResolver(), Settings.Secure.LOCATION_MODE); } catch (SettingNotFoundException e) { e.printStackTrace(); return false; }return locationMode != Settings.Secure.LOCATION_MODE_OFF; }else{ locationProviders = Settings.Secure.getString(context.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED); return !TextUtils.isEmpty(locationProviders); }}

另一答案你可以使用LocationManager
【如何检查我是否在Android 4.4及以上版本中以编程方式打开gps( [重复])】此类提供对系统位置服务的访问。这些服务允许应用程序获取设备的地理位置的定期更新,或者在设备进入给定地理位置附近时触发应用程序指定的Intent。
这是您正在寻找的代码片段
LocationManager locationManager = (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE); locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER))

这已经过Android 4.4及以上版本的测试。但不适用于8.0。

    推荐阅读