Android Location API using Google Play Services
In my previous post about Android GPS, Location Manager, I explained how to get device location (latitude & longitude) using the older android APIs. Now google introduced new way of getting device location using the Google Play Services.
A newer api called FusedLocationApi was introduced which connects with GoogleApiClient and gives us the best location available.
So let’s start this by creating a simple app.
1. Downloading & Importing Google Play Services
As this app needs Google Play Services, we need to setup the play services first. If you have the play services installed already, update them to latest version using Android SDK Manager.
1. Open Android SDK Manager and install or update the play services under Extras section.

2. In Eclipse goto File ⇒ Import ⇒ Android ⇒ Existing Android Code Into Workspace
3. Click on Browse and select Google Play Services project from your android sdk folder. You can locate play services library project from
android-sdk-windows\extras\google\google_play_services\libproject\google-play-services_lib
4. And check Copy projects into workspace option as shown in the below image, which places a copy of play services in eclipse workspace.

2. Creating Android Project
Once the play services are downloaded and imported into eclipse workspace, we can start building a simple app with the location services integrated.
1. In Eclipse create a new android project by navigating to File ⇒ New ⇒ Android Application Project and fill out all the required details.
I gave my project name as Location API and package name as info.androidhive.locationapi
2. Add the Google Play Services project as a library to our project. Right click on the project and selectproperties. In the properties window, on left side select Android. On the right, you can see a Add button under library section. Click it and select google play services library which we imported previously



3. Download this marker.png and paste it in your project’s src ⇒ res ⇒ drawable-ldpi folder. (Please note that this is a white color png image, it might not be visible in your browser window)
4. Open strings.xml located under res ⇒ values and add below string values.
<? xml version = "1.0" encoding = "utf-8" ?> < resources > < string name = "app_name" >Location API</ string > < string name = "lbl_you_are_at" >YOU ARE AT</ string > < string name = "btn_get_location" >GET MY LOCATION</ string > < string name = "btn_start_location_updates" >START LOCATION UPDATES</ string > < string name = "btn_stop_location_updates" >STOP LOCATION UPDATES</ string > </ resources > |
5. Open colors.xml located under res ⇒ values and add below color values. If you don’t see colors.xml, create a new file with the name.
<? xml version = "1.0" encoding = "utf-8" ?> < resources > < color name = "view_bg" >#b20e0f</ color > < color name = "white" >#ffffff</ color > < color name = "btn_bg" >#3e4a56</ color > </ resources > |
6. Open AndroidManifest.xml and add ACCESS_FINE_LOCATION permission. You also need to add below meta-data for google play services version.
< meta-data android:name = "com.google.android.gms.version" android:value = "@integer/google_play_services_version" /> |
After doing required changes, your AndroidManifest.xml should look like below.
<? xml version = "1.0" encoding = "utf-8" ?> package = "info.androidhive.locationapi" android:versionCode = "1" android:versionName = "1.0" > < uses-sdk android:minSdkVersion = "8" android:targetSdkVersion = "21" /> < uses-permission android:name = "android.permission.ACCESS_FINE_LOCATION" /> < application android:allowBackup = "true" android:icon = "@drawable/ic_launcher" android:label = "@string/app_name" android:theme = "@style/AppTheme" > < meta-data android:name = "com.google.android.gms.version" android:value = "@integer/google_play_services_version" /> < activity android:name = "info.androidhive.locationapi.MainActivity" android:label = "@string/app_name" android:screenOrientation = "portrait" > < intent-filter > < action android:name = "android.intent.action.MAIN" /> < category android:name = "android.intent.category.LAUNCHER" /> </ intent-filter > </ activity > </ application > </ manifest > |
7. Now we’ll quickly create a simple layout for our app. Open the layout file of your main activity (activity_main.xml) and add below code. This layout contains a TextView to display the location and two buttons (one is to get location and other is to toggle periodic location updates).
android:layout_width = "match_parent" android:layout_height = "match_parent" android:background = "@color/view_bg" android:gravity = "center_horizontal" android:orientation = "vertical" > < ImageView android:layout_width = "60dp" android:layout_height = "60dp" android:layout_marginTop = "60dp" android:src = "@drawable/marker" /> < TextView android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_marginTop = "25dp" android:text = "@string/lbl_you_are_at" android:textColor = "@color/white" android:textSize = "25dp" android:textStyle = "bold" /> < TextView android:id = "@+id/lblLocation" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:gravity = "center_horizontal" android:padding = "15dp" android:textColor = "@color/white" android:textSize = "16dp" /> < Button android:id = "@+id/btnShowLocation" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_marginTop = "40dp" android:background = "@color/btn_bg" android:paddingLeft = "20dp" android:paddingRight = "20dp" android:text = "@string/btn_get_location" android:textColor = "@color/white" /> < Button android:id = "@+id/btnLocationUpdates" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_marginTop = "60dp" android:background = "@color/btn_bg" android:paddingLeft = "20dp" android:paddingRight = "20dp" android:text = "@string/btn_start_location_updates" android:textColor = "@color/white" /> </ LinearLayout > |
8. Now we’ll start adding the code related to location api. Open your main activity MainActivity.java and implement the class from ConnectionCallbacks, OnConnectionFailedListener.
public class MainActivity1 extends Activity implements ConnectionCallbacks, OnConnectionFailedListener { } |
In brief, you need to do below changes in your activity to get the user’s current location.
> First check for availability of Google Play Services by calling checkPlayServices() in onResume()
> Once play services are available on the device, build the GoogleApiClient by callingbuildGoogleApiClient() method.
> Connect to google api client by calling mGoogleApiClient.connect() in onStart() method. By calling this,onConnectionFailed(), onConnected() and onConnectionSuspended() will be triggered depending upon the connection status.
> Once google api is successfully connected, displayLocation() should be called in onConnected() method to get the current location.
Add the below code to your main activity and run the project. Make sure that the wifi and location is enabled on your device before you test.
package info.androidhive.locationapi; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.GooglePlayServicesUtil; import com.google.android.gms.common.api.GoogleApiClient; import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks; import com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener; import com.google.android.gms.location.LocationRequest; import com.google.android.gms.location.LocationServices; import android.app.Activity; import android.location.Location; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; public class MainActivity1 extends Activity implements ConnectionCallbacks, OnConnectionFailedListener { // LogCat tag private static final String TAG = MainActivity. class .getSimpleName(); private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 1000 ; private Location mLastLocation; // Google client to interact with Google API private GoogleApiClient mGoogleApiClient; // boolean flag to toggle periodic location updates private boolean mRequestingLocationUpdates = false ; private LocationRequest mLocationRequest; // Location updates intervals in sec private static int UPDATE_INTERVAL = 10000 ; // 10 sec private static int FATEST_INTERVAL = 5000 ; // 5 sec private static int DISPLACEMENT = 10 ; // 10 meters // UI elements private TextView lblLocation; private Button btnShowLocation, btnStartLocationUpdates; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); lblLocation = (TextView) findViewById(R.id.lblLocation); btnShowLocation = (Button) findViewById(R.id.btnShowLocation); btnStartLocationUpdates = (Button) findViewById(R.id.btnLocationUpdates); // First we need to check availability of play services if (checkPlayServices()) { // Building the GoogleApi client buildGoogleApiClient(); } // Show location button click listener btnShowLocation.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { displayLocation(); } }); } /** * Method to display the location on UI * */ private void displayLocation() { mLastLocation = LocationServices.FusedLocationApi .getLastLocation(mGoogleApiClient); if (mLastLocation != null ) { double latitude = mLastLocation.getLatitude(); double longitude = mLastLocation.getLongitude(); lblLocation.setText(latitude + ", " + longitude); } else { lblLocation .setText( "(Couldn't get the location. Make sure location is enabled on the device)" ); } } /** * Creating google api client object * */ protected synchronized void buildGoogleApiClient() { mGoogleApiClient = new GoogleApiClient.Builder( this ) .addConnectionCallbacks( this ) .addOnConnectionFailedListener( this ) .addApi(LocationServices.API).build(); } /** * Method to verify google play services on the device * */ private boolean checkPlayServices() { int resultCode = GooglePlayServicesUtil .isGooglePlayServicesAvailable( this ); if (resultCode != ConnectionResult.SUCCESS) { if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) { GooglePlayServicesUtil.getErrorDialog(resultCode, this , PLAY_SERVICES_RESOLUTION_REQUEST).show(); } else { Toast.makeText(getApplicationContext(), "This device is not supported." , Toast.LENGTH_LONG) .show(); finish(); } return false ; } return true ; } @Override protected void onStart() { super .onStart(); if (mGoogleApiClient != null ) { mGoogleApiClient.connect(); } } @Override protected void onResume() { super .onResume(); checkPlayServices(); } /** * Google api callback methods */ @Override public void onConnectionFailed(ConnectionResult result) { Log.i(TAG, "Connection failed: ConnectionResult.getErrorCode() = " + result.getErrorCode()); } @Override public void onConnected(Bundle arg0) { // Once connected with google api, get the location displayLocation(); } @Override public void onConnectionSuspended( int arg0) { mGoogleApiClient.connect(); } } |

Receiving Location Updates
9. In certain scenarios, your app might needs location updates periodically. Let’s say you are building a direction app where user needs to be get updated whenever location is changed. In that case you need to request for location updates. Doing the below changes, you will get the new location wherever location is changed.
> Implement the activity from LocationListener which adds onLocationChanged() method.
> Create LocationRequest object by calling createLocationRequest() method in onCreate() method upon checking the play services availability.
> Add togglePeriodicLocationUpdates() method which toggles listening to location updates.
> Start the location updates by calling startLocationUpdates() in onConnected() and onResume() methods.
> Stop the location updates by calling stopLocationUpdates() in onStop().
> startLocationUpdates() and stopLocationUpdates() methods are used to start/stop the location updates.
> onLocationChanged() method will be triggered whenever the location is changed. CallingdisplayLocation() inside onLocationChanged will display new location data on the UI.
public class MainActivity extends Activity implements ConnectionCallbacks, OnConnectionFailedListener, LocationListener { @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); // First we need to check availability of play services if (checkPlayServices()) { createLocationRequest(); } // Toggling the periodic location updates btnStartLocationUpdates.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { togglePeriodicLocationUpdates(); } }); } @Override protected void onResume() { super .onResume(); // Resuming the periodic location updates if (mGoogleApiClient.isConnected() && mRequestingLocationUpdates) { startLocationUpdates(); } } @Override protected void onPause() { super .onPause(); stopLocationUpdates(); } /** * Method to toggle periodic location updates * */ private void togglePeriodicLocationUpdates() { if (!mRequestingLocationUpdates) { // Changing the button text btnStartLocationUpdates .setText(getString(R.string.btn_stop_location_updates)); mRequestingLocationUpdates = true ; // Starting the location updates startLocationUpdates(); Log.d(TAG, "Periodic location updates started!" ); } else { // Changing the button text btnStartLocationUpdates .setText(getString(R.string.btn_start_location_updates)); mRequestingLocationUpdates = false ; // Stopping the location updates stopLocationUpdates(); Log.d(TAG, "Periodic location updates stopped!" ); } } /** * Creating location request object * */ protected void createLocationRequest() { mLocationRequest = new LocationRequest(); mLocationRequest.setInterval(UPDATE_INTERVAL); mLocationRequest.setFastestInterval(FATEST_INTERVAL); mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY); mLocationRequest.setSmallestDisplacement(DISPLACEMENT); // 10 meters } /** * Starting the location updates * */ protected void startLocationUpdates() { LocationServices.FusedLocationApi.requestLocationUpdates( mGoogleApiClient, mLocationRequest, this ); } /** * Stopping location updates */ protected void stopLocationUpdates() { LocationServices.FusedLocationApi.removeLocationUpdates( mGoogleApiClient, this ); } @Override public void onConnected(Bundle arg0) { // Once connected with google api, get the location displayLocation(); if (mRequestingLocationUpdates) { startLocationUpdates(); } } @Override public void onLocationChanged(Location location) { // Assign the new location mLastLocation = location; Toast.makeText(getApplicationContext(), "Location changed!" , Toast.LENGTH_SHORT).show(); // Displaying the new location on UI displayLocation(); } } |
After doing all the above changes, run and test the app. If your app is not getting location, follow below steps to debug the app.

3. Testing the App
Below are the few key points should be kept in mind while testing the app.
> Your device should have internet connection (Wifi or mobile 3G).
> Location service should be enabled. Go to Settings => Location => Turn On.
> When you run the app, if you are not able to get the location even though you have done above two steps, open any of google’s location apps (maps) and come back to our app or just tap on START LOCATION UPDATES.
> If you are testing the periodic location updates, go out and take a short walk (few steps). You should see the locationChanged method calling by giving latest location coordinates.
Complete Code:
Below is the complete code of MainActivity.java
package info.androidhive.locationapi; import android.app.Activity; import android.location.Location; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.GooglePlayServicesUtil; import com.google.android.gms.common.api.GoogleApiClient; import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks; import com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener; import com.google.android.gms.location.LocationListener; import com.google.android.gms.location.LocationRequest; import com.google.android.gms.location.LocationServices; public class MainActivity extends Activity implements ConnectionCallbacks, OnConnectionFailedListener, LocationListener { // LogCat tag private static final String TAG = MainActivity. class .getSimpleName(); private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 1000 ; private Location mLastLocation; // Google client to interact with Google API private GoogleApiClient mGoogleApiClient; // boolean flag to toggle periodic location updates private boolean mRequestingLocationUpdates = false ; private LocationRequest mLocationRequest; // Location updates intervals in sec private static int UPDATE_INTERVAL = 10000 ; // 10 sec private static int FATEST_INTERVAL = 5000 ; // 5 sec private static int DISPLACEMENT = 10 ; // 10 meters // UI elements private TextView lblLocation; private Button btnShowLocation, btnStartLocationUpdates; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); lblLocation = (TextView) findViewById(R.id.lblLocation); btnShowLocation = (Button) findViewById(R.id.btnShowLocation); btnStartLocationUpdates = (Button) findViewById(R.id.btnLocationUpdates); // First we need to check availability of play services if (checkPlayServices()) { // Building the GoogleApi client buildGoogleApiClient(); createLocationRequest(); } // Show location button click listener btnShowLocation.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { displayLocation(); } }); // Toggling the periodic location updates btnStartLocationUpdates.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { togglePeriodicLocationUpdates(); } }); } @Override protected void onStart() { super .onStart(); if (mGoogleApiClient != null ) { mGoogleApiClient.connect(); } } @Override protected void onResume() { super .onResume(); checkPlayServices(); // Resuming the periodic location updates if (mGoogleApiClient.isConnected() && mRequestingLocationUpdates) { startLocationUpdates(); } } @Override protected void onStop() { super .onStop(); if (mGoogleApiClient.isConnected()) { mGoogleApiClient.disconnect(); } } @Override protected void onPause() { super .onPause(); stopLocationUpdates(); } /** * Method to display the location on UI * */ private void displayLocation() { mLastLocation = LocationServices.FusedLocationApi .getLastLocation(mGoogleApiClient); if (mLastLocation != null ) { double latitude = mLastLocation.getLatitude(); double longitude = mLastLocation.getLongitude(); lblLocation.setText(latitude + ", " + longitude); } else { lblLocation .setText( "(Couldn't get the location. Make sure location is enabled on the device)" ); } } /** * Method to toggle periodic location updates * */ private void togglePeriodicLocationUpdates() { if (!mRequestingLocationUpdates) { // Changing the button text btnStartLocationUpdates .setText(getString(R.string.btn_stop_location_updates)); mRequestingLocationUpdates = true ; // Starting the location updates startLocationUpdates(); Log.d(TAG, "Periodic location updates started!" ); } else { // Changing the button text btnStartLocationUpdates .setText(getString(R.string.btn_start_location_updates)); mRequestingLocationUpdates = false ; // Stopping the location updates stopLocationUpdates(); Log.d(TAG, "Periodic location updates stopped!" ); } } /** * Creating google api client object * */ protected synchronized void buildGoogleApiClient() { mGoogleApiClient = new GoogleApiClient.Builder( this ) .addConnectionCallbacks( this ) .addOnConnectionFailedListener( this ) .addApi(LocationServices.API).build(); } /** * Creating location request object * */ protected void createLocationRequest() { mLocationRequest = new LocationRequest(); mLocationRequest.setInterval(UPDATE_INTERVAL); mLocationRequest.setFastestInterval(FATEST_INTERVAL); mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY); mLocationRequest.setSmallestDisplacement(DISPLACEMENT); } /** * Method to verify google play services on the device * */ private boolean checkPlayServices() { int resultCode = GooglePlayServicesUtil .isGooglePlayServicesAvailable( this ); if (resultCode != ConnectionResult.SUCCESS) { if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) { GooglePlayServicesUtil.getErrorDialog(resultCode, this , PLAY_SERVICES_RESOLUTION_REQUEST).show(); } else { Toast.makeText(getApplicationContext(), "This device is not supported." , Toast.LENGTH_LONG) .show(); finish(); } return false ; } return true ; } /** * Starting the location updates * */ protected void startLocationUpdates() { LocationServices.FusedLocationApi.requestLocationUpdates( mGoogleApiClient, mLocationRequest, this ); } /** * Stopping location updates */ protected void stopLocationUpdates() { LocationServices.FusedLocationApi.removeLocationUpdates( mGoogleApiClient, this ); } /** * Google api callback methods */ @Override public void onConnectionFailed(ConnectionResult result) { Log.i(TAG, "Connection failed: ConnectionResult.getErrorCode() = " + result.getErrorCode()); } @Override public void onConnected(Bundle arg0) { // Once connected with google api, get the location displayLocation(); if (mRequestingLocationUpdates) { startLocationUpdates(); } } @Override public void onConnectionSuspended( int arg0) { mGoogleApiClient.connect(); } @Override public void onLocationChanged(Location location) { // Assign the new location mLastLocation = location; Toast.makeText(getApplicationContext(), "Location changed!" , Toast.LENGTH_SHORT).show(); // Displaying the new location on UI displayLocation(); } } |
References:
Making Your App Location-Aware