复制即用,兼容安卓8及以下,安卓9以上部分国产魔改系统可能不兼容。
引用 android.content.Context
引用 android.location.LocationManager
引用 android.os.Build
引用 android.provider.Settings
函数 取系统定位是否已打开() 为 逻辑型
变量 是否已打开 = 假
@{
LocationManager locationManager = (LocationManager) MainActivity.getContext().getSystemService(Context.LOCATION_SERVICE);
if (locationManager == null) {
是否已打开 = false;
}
// 直接硬核判断 Android 8 及以下
if (Build.VERSION.SDK_INT < 28) {
try {
// 读取系统全局定位开关状态
int mode = Settings.Secure.getInt(
MainActivity.getContext().getContentResolver(),
Settings.Secure.LOCATION_MODE
);
是否已打开 = (mode != Settings.Secure.LOCATION_MODE_OFF);
} catch (Settings.SettingNotFoundException e) {
// 如果系统设置被魔改(比如某些国产手机),直接检查 GPS 和网络定位开关
boolean gpsOn = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
boolean networkOn = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
是否已打开 = gpsOn || networkOn;
}
} else {
// 如果是 Android 9+ 的代码(虽然你用不到,但留着备用)
是否已打开 = false; // locationManager.isLocationEnabled();
}
}
返回 是否已打开
结束 函数