If you want to check the GPS status that it is on or off, this solution will help you
final LocationManager manager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE ); if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) Toast.makeText(context, "GPS is disable!", Toast.LENGTH_LONG).show(); else Toast.makeText(context, "GPS is Enable!", Toast.LENGTH_LONG).show();
Pir fahim shah
source share