我知道.不要这样做我不在乎它是一个根应用程序
该应用程序安装到/ system / app / with 0777权限
我以前用过:
ContentResolver cr = context.getContentResolver(); Settings.Secure.setLocationProviderEnabled(cr,LocationManager.GPS_PROVIDER,!isGpsOn);
这是我在4.4中尝试的,因为这是不推荐的:
int value; if (isGpsOn)value = Settings.Secure.LOCATION_MODE_OFF; else value = Settings.Secure.LOCATION_MODE_HIGH_ACCURACY; Settings.Secure.putInt(cr,Settings.Secure.LOCATION_MODE,value);
解决方法
Don’t do this. 原文链接:https://www.f2er.com/android/313172.html