18
Sensor Programming Android application development

Android Sensor

Embed Size (px)

DESCRIPTION

National Mobile Application Awareness Development & Capacity Building Program (Android Slides)

Citation preview

Page 1: Android Sensor

Sensor Programming

Android application development

Page 2: Android Sensor

Android Sensors1. Android phones support different sensors. 2. Today we write test code that reports which sensors our Android device supports. 3. Unfortunately, the emulator supports none upto SDK 1.5.4. But we’ll see how many sensors are supported

in real device5. We’ll create a project named SensorTest for this.

We’ll test following sensor list:1. Accelerometer2. Light3. Magnetic Field4. Orientation5. Orientation Raw6. Proximity7. Temperature8. Tricorder This is for SDK 1.5

Page 3: Android Sensor

Let’s create a project named SensorTest

Page 4: Android Sensor

Activity to a ListActivity1. We change our Activity to a ListActivity

Page 5: Android Sensor

Android Sensors Test2. We’ll use SensorManager class3. So we declare a List for SensorInfo 4. SensorInfo is a class defined by us which holds the sensor name and a boolean value whether its supported or not.5. So we create a SensorInfo class

Page 6: Android Sensor

ListActivity6. Let’s get back to our ListActivity

7. We’ll now populate the list with all sensors and check whether they are enabled

Page 7: Android Sensor

Declare a List of SensorInfo8. We declare a List of SensorInfo

9. Now we check each sensor one by one: First Accelerometer

10. Now we check each sensor one by one: then Light

Page 8: Android Sensor

Android Sensors Test11. Now we check each sensor one by one: First Magnetic field

12. Now we check each sensor one by one: then Orientation

Page 9: Android Sensor

Android Sensors Test13. Now we check each sensor one by one: First Orientation Raw

14. Now we check each sensor one by one: then Proximity

Page 10: Android Sensor

Android Sensors Test15. Now we check each sensor one by one: First Temperature

16. Now we check each sensor one by one: then Tricorder

Page 11: Android Sensor

Android Sensors Test17. To show the list we do the following by setting adapter

Now we run the app in emulator.

Except Accelerometer we see all sensors are disabledMay be in later SDKs we’ll get more enabled sensors

Page 12: Android Sensor

Android Sensors TestLets run this in Galaxy tab

We see the following are enabled:

1. Accelerometer2. Light3. Magnetic Field4. Orientation5. Orientation Raw6. Proximity

So the sensor support varies from Vendor to vendor and model to model

Page 13: Android Sensor

Android Sensor Programming

As we see that Accelerometer is the 1. most commonly used sensor and also 2. it has many applications in games development, We’ll see and example of Sensor programming with Accelerometer

And as we don’t have option to move the emulator we may have to use a sensor simulator which will simulate the sensor data.So we download the library for sensorsimulation at:http://openintents.googlecode.com/files/sensorsimulator-1.1.0-rc1.ziphttp://code.google.com/p/openintents/downloads/detail?name=sensorsimulator-1.1.0-rc1.zip&can=2&q=http://code.google.com/p/openintents/wiki/SensorSimulator

We can follow their instruction to use it.

But here, we’ll do it in our real device, so simulator will not be required

Page 14: Android Sensor

Create a project as an exampleWe create a layout with a simple image which will move according to the Accelerometer:

Page 15: Android Sensor

Our Activity

Page 16: Android Sensor

Android Sensor ProgrammingAdding SensorEventListener inner class with data update

Page 17: Android Sensor

Android Sensor ProgrammingDeclaring variables and registering listener

Page 18: Android Sensor

Android Sensor ProgrammingRegister and unregister listener on activity onStop and onResume: