Introduction
This android tutorial is about adding Location module in the app. You have already seen that almost all the android app out there detects your current location. These apps provides services according to your current location. The services can range from sending plumber to getting food delivered in user’s location. In this Android tutorial we will learn how to get the last know location of a device (as latitude, longitude). We’ll add location module in Android app using FusedLocationProviderClient provided by latest google play service API’s .
Through Google Play Services SDK, Android has provided a new way to access user location. You can read more about the location services here. This is connection-less API. This new API does not mandate the developer to manually manage a connection to Google Play services through a GoogleApiClient. If you have already implemented location aware app using GoogleApiClient, you must already know that to access the location related services, the app first needs to connect to Google Play services asynchronously. The logic that a developer builds around it is many a times erroneous or error-prone. However, in the new LocationServices API, the connection logic is handled implicitly and automatically by Google. Thus, this makes a developer’s life earlier, code complexity is lesser and lesser error prone.
This blog is first part of location related tutorials. In this tutorial, we will keep it very simple. We’ll just get the last known location of the device or user. It’ll retrieve the most recently available location and at times, it may be null as well in those rarest of rare cases when there is no location available or location is disabled in device. This tutorial (as a by product) will also show how we can check for user permission in android app.
So, let’s get cracking folks!!
App Screenshot
I have erased the location intentionally, so that you don’t know where I am coding from
Tech Stack
Basic Steps for implementing location aware app
Well, that’s it. Let’s get started with the development.
Create an empty project
- Launch Android Studio and click: File –> New –> New Project…
- A “Create New Project” dialog box will open; we’ll provide the app name and company domain. I have entered following details, you can provide the name/domain as per your choice and preference.
- Application Name:- ItcGoogleFusedLocationSample
- Company Domain:- iteritory.com
- Click on Next button. In the next window, select the minimum SDK version; you can choose as per your preference. In this case, I have chosen API 16: Android 4.1 (Jelly Bean). Click Next button.
- In the next window, select “Empty Activity“. Click Next button.
- In the next window, let’s keep the Activity Name and Layout Name to default. Click Finish button.
- I’ll change the app name a bit here, traverse and open res–> values –> strings.xml. Find the line with app_name attribute. Change the value to “Last Location ”.
Prerequisite
- Ensure that your android studio is updated to the latest and also you have latest google play service installed. Please check the below screenshot for reference. You can open the SDK manager from the studio to check the relevant details –
- In the app level build.gradle file, add a dependency for play service –> compile ‘com.google.android.gms:play-services-location:11.0.0’. Post modification, the build.gradle file looks like –
- Next, open the AndroidManifest.xml and followings –
- Add a meta-data section for the google play service
- Add user-permission section for “ACCESS_FINE_LOCATION”. With the ACCESS_FINE_LOCATION setting is specified, the Fused Location Provider API returns location updates that are accurate to within a few feet.
- Post modification AndroidManifest.xml looks like –
Build the UI
Next, we will build a very simple UI for displaying the latitude, longitude of the user’s current or last known location. This UI will be loaded with the last known device location on app startup. After putting in necessary objects, the activity_main.xml is as follows –
Develop the code
- Now, we will start with developing the code. For the sake of simplicity, we will write all the codes in the MainActivity class itself
- Declare required variables for holding location information and initialize them in the onCreate function –
- Write functions to check if the the app has necessary permission to access location. If the permission is unavailable, request permission from user for the app. Write a function that will actually start the permission requesting dialog.
- Write a function to get the current or last known location. In some situations, it’s possible that it returns null when location is not available or when the location is not enabled.
- Stitching all the components together, the MainActivity class looks like –
- I have provided Log statement in every step; this is to make sure we understand the workflow. When you run the app in your device from android studio, open the Logcat pen and notice how the statements are printed. That’s exactly the workflow of the app in that specific situation. For example, when I ran this app with location enabled, I got following workflow –
Github Link
The project can be downloaded from this github page.
Conclusion
In this tutorial, we learn a very simple way to get the last known location of a user. In the subsequent tutorial, we will see how to fetch the current location and how we keep getting updated location. See you soon with new learning folks.
Comments
Post a Comment