Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.location.LocationManager; public class Main { public static boolean isGpsOpened(Context context) { LocationManager alm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); if (alm.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER)) { return true; } else { return false; } } }