Skip to content

Instantly share code, notes, and snippets.

@skymxc
Created March 1, 2017 09:51
Show Gist options
  • Select an option

  • Save skymxc/2b16658f1a15a6f3888c076cd8c910d8 to your computer and use it in GitHub Desktop.

Select an option

Save skymxc/2b16658f1a15a6f3888c076cd8c910d8 to your computer and use it in GitHub Desktop.
是否开启GPS
/**
* 是否开启GPS
* @return
*/
public static boolean gpsEnable(){
LocationManager locationManager = (LocationManager) ApplicationUtil.application.getSystemService(Context.LOCATION_SERVICE);
boolean enable = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
return enable;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment