38
Android GPS, Location Services, Camera and Sensors [email protected]

Android gps, location services, camera and sensors - Paramvir Singh

Embed Size (px)

Citation preview

Page 1: Android gps, location services, camera and sensors - Paramvir Singh

AndroidGPS, Location Services, Camera and [email protected]

Page 2: Android gps, location services, camera and sensors - Paramvir Singh

Today’s agenda

GPS and Location Services

Using Google Play Services

Camera

Sensors

***

Page 3: Android gps, location services, camera and sensors - Paramvir Singh

GPS and Location Services

Page 4: Android gps, location services, camera and sensors - Paramvir Singh

How GPS Works

Global Positioning System (GPS) - mechanism to get location coordinates (latitude and longitude) by directly connecting to satellites.

GPS radio (Hardware) present in every smartphone.

When turned ON, GPS radio communicates with at least 3 satellites and tries to calculate its location.

Choose either COARSE or FINE location.

Page 5: Android gps, location services, camera and sensors - Paramvir Singh

How GPS Works

Page 6: Android gps, location services, camera and sensors - Paramvir Singh

Location Services in Android - Old Way

LocationManager

● Get last known location● Request frequent location updates - LocationListener

GeoCoder

● Get complete street address from geo coordinates● Get geo coordinates from street address

Page 7: Android gps, location services, camera and sensors - Paramvir Singh

LocationListener

Two methods:

● onLocationChanged()● onStatusChanged()

Things to consider:

● Type of location provider● Minimum time interval for next update● Minimum distance covered before next update

Page 8: Android gps, location services, camera and sensors - Paramvir Singh

Services - Demo

Page 9: Android gps, location services, camera and sensors - Paramvir Singh

Using Google’s Location Services - The new way

“Provides same functionality and more in better and more efficient way using least battery.”

● Getting last known location● Receiving location updates● Displaying location address

Page 10: Android gps, location services, camera and sensors - Paramvir Singh

Google Play Services

Google Play Games Services

Location APIs

Google+ APIs

Maps

Google Drive APIs

Google Wallet, Google Ads, Google Fit and many more..

Page 11: Android gps, location services, camera and sensors - Paramvir Singh

Using Google Play Services for Location

Page 12: Android gps, location services, camera and sensors - Paramvir Singh

Handling google API Client

Page 13: Android gps, location services, camera and sensors - Paramvir Singh

Getting Location Updates

Create

Page 14: Android gps, location services, camera and sensors - Paramvir Singh

Using Maps

Add Google Maps in app.

Show required location/address in map.

Draw Marker on map.

Zoom to a particular location.

Show address related information in map.

Page 15: Android gps, location services, camera and sensors - Paramvir Singh

Using Maps

SupportMapFragment:

Page 16: Android gps, location services, camera and sensors - Paramvir Singh

Using Maps - Other Important Classes

GoogleMap

LatLng

MarkerOptions

CameraUpdate

Page 17: Android gps, location services, camera and sensors - Paramvir Singh

Demo

Page 18: Android gps, location services, camera and sensors - Paramvir Singh

Sensors

Page 19: Android gps, location services, camera and sensors - Paramvir Singh

Sensors in Android

To detect device movement: rotation, acceleration, orientation.

To detect environmental conditions: temperature or humidity.

● Motion sensors● Environment sensors● Position sensors

Page 20: Android gps, location services, camera and sensors - Paramvir Singh

Motion & Position Sensors

Accelerometer

Gravity Sensor

Gyroscope

Rotation Sensor

Orientation Sensor

Magnetometer

Page 21: Android gps, location services, camera and sensors - Paramvir Singh

Gyroscope

Page 22: Android gps, location services, camera and sensors - Paramvir Singh

Sensors

Page 23: Android gps, location services, camera and sensors - Paramvir Singh

Using Sensors in App

Working on every individual sensor separately is not required.

Many sensors are combined to form one sensor. E.g. Accelerometer, gyroscope and orientation sensors work together to give meaningful and usable values.

Access sensor available on device using “Sensor” class in Android.

● Determine which sensors are available● Retrieve raw sensor data● Register and unregister sensor event listeners

Page 24: Android gps, location services, camera and sensors - Paramvir Singh

Using Sensors in App

Page 25: Android gps, location services, camera and sensors - Paramvir Singh

Android Sensor Framework

SensorManager

Sensor

SensorEvent

SensorEventListener

Page 26: Android gps, location services, camera and sensors - Paramvir Singh

Demo

Page 27: Android gps, location services, camera and sensors - Paramvir Singh

Camera

Page 28: Android gps, location services, camera and sensors - Paramvir Singh

Camera in Android

Take Picture or Record Video, apply filters, use in-built camera features.

Either built Camera feature in App from scratch using Framework classes:

● Android.hardware.camera2● Camera● SurfaceView● MediaRecorder

Or use Intent to open in-built camera app to take picture.

Page 29: Android gps, location services, camera and sensors - Paramvir Singh

Using Intent to Open Camera App

Compose Camera Intent.

Start Camera Activity.

Receive clicked picture as a result from Intent.

Page 30: Android gps, location services, camera and sensors - Paramvir Singh

Demo

Page 31: Android gps, location services, camera and sensors - Paramvir Singh

Content Providers

Page 32: Android gps, location services, camera and sensors - Paramvir Singh

Content Providers

A layer above stored data.

Hide how data is stored.

Used to share data between apps.

Provide Security to stored data.

Provide standard interface to access data easily.

Page 33: Android gps, location services, camera and sensors - Paramvir Singh

Examples of In-built Content Providers

Calendar Provider

Contacts Provider

Browser History and bookmarks

User Dictionary

Call logs

Page 34: Android gps, location services, camera and sensors - Paramvir Singh

Making Queries

Page 35: Android gps, location services, camera and sensors - Paramvir Singh

Making Query - Using Cursor

Page 36: Android gps, location services, camera and sensors - Paramvir Singh

Projection

Page 37: Android gps, location services, camera and sensors - Paramvir Singh

Demo

Page 38: Android gps, location services, camera and sensors - Paramvir Singh

Paramvir Singh

Android Architect and Trainer

[email protected]

+91-9999703899