Check if gps is available in android

Check if gps is available in android

how do i check if the gps is enabled on android device?

//  android check if gps is enabled
final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE );
if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
	buildAlertMessageNoGps();
}
Source:w‮l.ww‬autturi.com
Created Time:2017-09-02 20:48:18  Author:lautturi