Click here to Skip to main content
Full site     10M members (33.2K online)    

Check whether location services are enabled on Android Phone

Introduction

Nowadays, Many applications use location services. As a developer, you have to check location services are enabled or disabled if your app uses location services. Let's look at how to check location services. 

Using the code 

First, you have to add location services permission to manifest file. 

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 

Second, you have to check whether location services are enabled by using some boolean function. To do this, you have to access to location manager. Location manager has some provider information. For example location services are enabled or disabled. 

 public static boolean control(){

LocationManager locManager = (LocationManager) getSystemService(LOCATION_SERVICE);  

        if (locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)){  
           //GPS enabled
           return true;
        }
           
        else{
           //GPS disabled
           return false;
        }
}       

 As you see, if location services are enabled, function returns true. If it isn't, function returns false.  

 
You must Sign In to use this message board.
Search 
Per page   
-- There are no messages in this forum --

Last Updated 1 Apr 2013 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2013