/**
* 打卡GPS
*/
public static void openGPSSettings(Context context) {
LocationManager alm = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
if (alm.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER)) {
Toast.makeText( context, "GPS已打卡", Toast.LENGTH_SHORT ).show();
} else {
Toast.makeText( context, "请打开GPS", Toast.LENGTH_SHORT ).show();
Intent myIntent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
context.startActivity(myIntent);
}
}