Java tutorial
//package com.java2s; import android.content.Context; import android.location.LocationManager; public class Main { public static final boolean isGPSOPen(final Context context) { LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); boolean gps = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER); boolean network = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER); // if (gps ) { // return true; // } if (gps || network) { return true; } return false; } }