Objective. Android Sensors. Sensor Manager Sensor Types Examples. Page 2
|
|
|
- Stanley McCoy
- 10 years ago
- Views:
Transcription
1 Android Sensors
2 Objective Android Sensors Sensor Manager Sensor Types Examples Page 2
3 Android.hardware Support for Hardware classes with some interfaces Camera: used to set image capture settings, start/stop preview, snap pictures, and retrieve frames for encoding for video. Camera.CameraInfo: Information about a camera Camera.Parameters: Camera service settings. Camera.Size: Image size (width and height dimensions). GeomagneticField: Estimate magnetic field at a given point on Earth and compute the magnetic declination from true north. Sensor: Class representing a sensor. SensorEvent: Represents a Sensor event and holds information such as sensor's type, time-stamp, accuracy and sensor's data. SensorManager: SensorManager lets you access the device's sensors. Page 3
4 Android Software Stack Sensor Manager Page 4
5 Sensing & Sensor Manager Device specific ServiceManager provides access to Sensor Manager Service Use Context.getSystemService(SENSOR_SERVICE) for access String service_name = Context.SENSOR_SERVICE; SensorManager sensormanager = (SensorManager) getsystemservice(service_name) Note that you should disable any sensors you need, especially when activity paused. System will not disable automatically when screen turns off Battery will drain quickly otherwise. Page 5
6 Methods Sensor getdefaultsensor(int type) Use this method to get the default sensor for a given type List<Sensor> getsensorlist(int type) Use this method to get the list of available sensors of a certain type boolean registerlistener(sensoreventlistener listener, Sensor sensor, int rate) Registers a SensorEventListener for the given sensor. void unregisterlistener(sensoreventlistener listener, Sensor sensor) Unregisters a listener for the sensors with which it is registered. Page 6
7 Sensor Types Sensor.TYPE_ACCELEROMETER Acceleration 3-axes m/s 2 Sensor.TYPE_GYROSCOPE 3 axis orientation in degrees Sensor.TYPE_LIGHT Single value in lux Sensor.TYPE_MAGNETIC_FIELD Microteslas in 3-axes Page 7
8 Sensors Sensor.TYPE_ORIENTATION Page 8 Orientation in 3-axes in degrees Sensor.TYPE_PRESSURE Single value in kilopascals Sensor.TYPE_PROXIMITY Distance in meters Sensor.TYPE_TEMPERATURE Value degrees Celsius Sensor.html
9 public float getmaximumrange () - maximum range of the sensor in the sensor's unit. public int getmindelay () - the minimum delay allowed between two events in microsecond or zero if this sensor only returns a value when the data it's measuring changes. public String getname () - name string of the sensor. public float getpower () - the power in ma used by this sensor while in use. public float getresolution () - resolution of the sensor in the sensor's unit. Page 9
10 getpower() Methods The has a 1500 ma Under normal use, the battery lasts 10hours. If we use orientation, rotation vector, & magnetic field sensors How long would it last now? Page 10
11 Checking for Sensors Sensor defaultgyroscope = sensormanager.getdefaultsensor (Sensor.TYPE_GYROSCOPE); //(Returns null if none) //Or, get a list of all sensors of a type: List<Sensor> pressuresensors = sensormanager.getsensorlist(sensor.type_pressure); //Or, get a list of all sensors of a type: List<Sensor> allsensors = sensormanager.getsensorlist(sensor.type_all); Page 11
12 Listening for Sensors final SensorEventListener mysensoreventlistener = new SensorEventListener() { public void onsensorchanged(sensorevent sensorevent) { // TODO Monitor Sensor changes. public void onaccuracychanged(sensor sensor, int accuracy) { // TODO React to a change in Sensor accuracy. SensorManager.SENSOR_STATUS_ACCURACY_LOW SensorManager.SENSOR_STATUS_ACCURACY_MEDIUM SensorManager.SENSOR_STATUS_ACCURACY_HIGH SensorManager.SENSOR_STATUS_ACCURACY_UNRELIABLE Page 12
13 SensorEvent SensorEvent parameter in the onsensorchanged method includes four properties used to describe a Sensor event: sensor: The sensor that triggered the event. accuracy: The accuracy of the Sensor when the event occurred. values: A float array that contains the new value(s) detected. timestamp: The time in nanosecond at which the event occurred. Page 13
14 Sensor Return Values Page 14
15 Register // Usually in onresume Sensor sensor = sensormanager.getdefaultsensor(sensor.type_proximity; sensormanager.registerlistener(mysensoreventlistener, sensor, SensorManager.SENSOR_DELAY_NORMAL); // Usually in onpause sensormanager.unregisterlistener(mysensoreventlistener) ); Update Rate: SensorManager.SENSOR_DELAY_FASTEST SensorManager.SENSOR_DELAY_GAME SensorManager.SENSOR_DELAY_NORMAL SensorManager.SENSOR_DELAY_UI Page 15
16 Accelerometer, Compass, & Orientation Allow you to: Determine the current device orientation Monitor and track changes in orientation Know which direction the user is facing Monitor accelerationchanges in movement ratein any direction Open possibilities for your applications: Use these with a map, camera, and location-based services to create augmented reality interfaces. Create user interface that adjust dynamically to suit device orientation. Monitor rapid acceleration to detect if a device is dropped or thrown. Measure movement or vibration (e.g., locking application). User interface controls that use physical gestures and movement. Page 16
17 Accelerometer Sensor Acceleration is defined as the rate of change of velocity. Accelerometers measure how quickly the speed of the device is changing in a given direction. Detect movement and of change. Accelerometers do not measure velocity Page 17
18 Listener for Changes (Accel) public void setupsensorlistener() { SensorManager sm = (SensorManager)getSystemService(Context.SENSOR_SERVICE); int sensortype = Sensor.TYPE_ACCELEROMETER; sm.registerlistener(mysensoreventlistener, sm.getdefaultsensor(sensortype), SensorManager.SENSOR_DELAY_NORMAL); final SensorEventListener mysensoreventlistener = new SensorEventListener() { public void onsensorchanged(sensorevent sensorevent) { if (sensorevent.sensor.gettype() == Sensor.TYPE_ACCELEROMETER) { float xaxis_laterala = sensorevent.values[0]; float yaxis_longitudinala = sensorevent.values[1]; float zaxis_verticala = sensorevent.values[2]; ; // TODO apply the acceleration changes to your application. Page 18
19 Orientation Sensor Orientation Sensor is a combination of the magnetic field Sensors, which function as an electronic compass, and accelerometers, which determine the pitch and roll. Two alternatives for determining the device orientation. Query the orientation Sensor directly Derive the orientation using the accelerometers and magnetic field Sensors. x-axis (azimuth) 0/360 degrees is north, 90 east, 180 south, and 270 west y-axis (pitch) 0 flat on its back, -90 standing upright. z-axis (roll) 0 flat on its back, -90 is the screen facing left Page 19
20 Listener for Changes (Orientation) public void setupsensorlistener() { SensorManager sm = (SensorManager)getSystemService(Context.SENSOR_SERVICE); int sensortype = Sensor.TYPE_ORIENTATION; sm.registerlistener(mysensoreventlistener, sm.getdefaultsensor(sensortype), SensorManager.SENSOR_DELAY_NORMAL); final SensorEventListener mysensoreventlistener = new SensorEventListener() { public void onsensorchanged(sensorevent sensorevent) { if (sensorevent.sensor.gettype() == Sensor.TYPE_ORIENTATION) { float headingangle = sensorevent.values[0]; float pitchangle = sensorevent.values[1]; float rollangle = sensorevent.values[2]; ; // TODO apply the orientation changes to your application. Page 20
21 Controlling Vibration Vibration is an excellent way to provide haptic user feedback. Applications needs the VIBRATE permission in application manifest: <uses-permission android:name="android.permission.vibrate"/> Example: String vibratorservice = Context.VIBRATOR_SERVICE; Vibrator vibrator = (Vibrator)getSystemService(vibratorService); long[] pattern = {1000, 2000, 4000, 8000, ; vibrator.vibrate(pattern, 0); // Execute vibration pattern. vibrator.vibrate(1000); // Vibrate for 1 second. Page 21
22 Accelerometer Data Page 22
23 Page 23 Questions?
24 To DO Example 1 (in slides) Example 2 (in slides) Example 3 (in slides) Assignment #2: Stealth Tracker Page 24
25 Example 1. Displaying Accelerometer and Orientation Data Create an activity with accelerometer and orientation data. packagebim224.androidsensorlist; import android.app.listactivity; import android.content.context; import android.hardware.sensor; import android.hardware.sensormanager; import android.os.bundle; import android.widget.arrayadapter; public class SensorTest extends Activity implements SensorEventListener { SensorManager sensormanager = null; //for accelerometer values TextView outputx; TextView outputy; TextView outputz; //for orientation values TextView outputx2; TextView outputy2; TextView outputz2; Page 25 Fall 2011
26 Example 1. Displaying Accelerometer and Orientation public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); sensormanager = (SensorManager) getsystemservice(sensor_service); setcontentview(r.layout.main); //just some textviews, for data output outputx = (TextView) findviewbyid(r.id.textview01); outputy = (TextView) findviewbyid(r.id.textview02); outputz = (TextView) findviewbyid(r.id.textview03); outputx2 = (TextView) findviewbyid(r.id.textview04); outputy2 = (TextView) findviewbyid(r.id.textview05); outputz2 = (TextView) findviewbyid(r.id.textview06); Page 26
27 Example 1. Displaying Accelerometer and Orientation protected void onresume() { super.onresume(); sensormanager.registerlistener(this, sensormanager.getdefaultsensor(sensor.type_accelerometer), sensormanager.sensor_delay_game); sensormanager.registerlistener(this, sensormanager.getdefaultsensor(sensor.type_orientation), protected void onstop() { super.onstop(); sensormanager.unregisterlistener(this, sensormanager.getdefaultsensor(sensor.type_accelerometer)); sensormanager.unregisterlistener(this, sensormanager.getdefaultsensor(sensor.type_orientation)); Page 27
28 Example 1. Displaying Accelerometer and Orientation Data public void onsensorchanged(sensorevent event) { synchronized (this) { switch (event.sensor.gettype()){ case Sensor.TYPE_ACCELEROMETER: outputx.settext("x:"+float.tostring(event.values[0])); outputy.settext("y:"+float.tostring(event.values[1])); outputz.settext("z:"+float.tostring(event.values[2])); break; case Sensor.TYPE_ORIENTATION: outputx2.settext("x:"+float.tostring(event.values[0])); outputy2.settext("y:"+float.tostring(event.values[1])); outputz2.settext("z:"+float.tostring(event.values[2])); public void onaccuracychanged(sensor sensor, int accuracy) { Page 28
29 Example 2. Creating a G-Forceometer Create a simple device to measure g-force using the accelerometers to determine the current force being exerted on the device. Forceometer Activity & Layout (main.xml) <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=" android:orientation="android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:id="@+android:gravity="center" android:layout_width="fill_parentandroid:layout_height="wrap_content" android:textstyle="android:textsize="32sp" android:text="android:editable="false" android:singleline="android:layout_margin="10px" /> <TextView android:id="@+id/maxaccelerationandroid:gravity="center" android:layout_width="fill_parentandroid:layout_height="wrap_content" android:textstyle="android:textsize="40sp" android:text="android:editable="false" android:singleline="android:layout_margin="10px" /> </LinearLayout> Page 29
30 Example 2. Creating a G-Forceometer Within Forceometer Activity class, create instance variables SensorManager sensormanager; TextView accelerationtextview; TextView maxaccelerationtextview; float currentacceleration = 0; float maxacceleration = 0; Within Forceometer Activity class, create a new SensorEventListener implementation private final SensorEventListener sensoreventlistener = new SensorEventListener() { double calibration = SensorManager.STANDARD_GRAVITY; public void onaccuracychanged(sensor sensor, int accuracy) { public void onsensorchanged(sensorevent event) { double x = event.values[0]; double y = event.values[1]; double z = event.values[2]; double a = Math.round(Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2))); currentacceleration = Math.abs((float)(a-calibration)); if (currentacceleration > maxacceleration) maxacceleration = currentacceleration; ; Page 30
31 Example 2. Creating a G-Forceometer Update the oncreate method to register your new Listener for accelerometer updates using the public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); accelerationtextview = (TextView)findViewById(R.id.acceleration); maxaccelerationtextview = (TextView)findViewById(R.id.maxAcceleration); sensormanager = (SensorManager)getSystemService(Context.SENSOR_SERVICE); Sensor accelerometer = sensormanager.getdefaultsensor(sensor.type_accelerometer); sensormanager.registerlistener(sensoreventlistener, accelerometer, SensorManager.SENSOR_DELAY_FASTEST); Page 31
32 Example 2. Creating a G-Forceometer Create a new updategui method that synchronizes with the GUI thread based on a Timer before updating the Text Views private void updategui() { runonuithread(new Runnable() { public void run() { String currentg = currentacceleration/sensormanager.standard_gravity + "Gs"; accelerationtextview.settext(currentg); accelerationtextview.invalidate(); ; ); String maxg = maxacceleration/sensormanager.standard_gravity + "Gs"; maxaccelerationtextview.settext(maxg); maxaccelerationtextview.invalidate(); Page 32
33 Example 2. Creating a G-Forceometer Update the oncreate every public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); accelerationtextview = (TextView)findViewById(R.id.acceleration); maxaccelerationtextview = (TextView)findViewById(R.id.maxAcceleration); sensormanager = (SensorManager)getSystemService(Context.SENSOR_SERVICE); Sensor accelerometer = sensormanager.getdefaultsensor(sensor.type_accelerometer); sensormanager.registerlistener(sensoreventlistener, accelerometer, SensorManager.SENSOR_DELAY_FASTEST); Timer updatetimer = new Timer("gForceUpdate"); updatetimer.scheduleatfixedrate(new TimerTask() { public void run() { updategui();, 0, 100); Page 33
34 Example 3. Compass App package com.example.android.apis.graphics; import android.content.context; import android.graphics.*; import android.hardware.sensor; import android.hardware.sensorevent; import android.hardware.sensoreventlistener; import android.hardware.sensormanager; import android.os.bundle; import android.util.config; import android.util.log; import android.view.view; public class Compass extends GraphicsActivity { private static final String TAG = "Compass"; private SensorManager msensormanager; private Sensor msensor; private SampleView mview; private float[] mvalues; Page 34
35 Example 3. Compass App private final SensorEventListener mlistener = new SensorEventListener() { public void onsensorchanged(sensorevent event) { if (Config.DEBUG) Log.d(TAG, "sensorchanged (" + event.values[0] + ", " + event.values[1] + ", " + event.values[2] + ")"); mvalues = event.values; if (mview!= null) { mview.invalidate(); ; public void onaccuracychanged(sensor sensor, int accuracy) protected void oncreate(bundle icicle) { super.oncreate(icicle); msensormanager = (SensorManager)getSystemService(Context.SENSOR_SERVICE); msensor = msensormanager.getdefaultsensor(sensor.type_orientation); mview = new SampleView(this); setcontentview(mview); Page 35
36 Example 3. Compass App Page protected void onresume() { if (Config.DEBUG) Log.d(TAG, "onresume"); super.onresume(); msensormanager.registerlistener(mlistener, msensor, protected void onstop() { if (Config.DEBUG) Log.d(TAG, "onstop"); msensormanager.unregisterlistener(mlistener); super.onstop(); private class SampleView extends View { private Paint mpaint = new Paint(); private Path mpath = new Path(); private boolean manimate; public SampleView(Context context) { super(context);
37 Example 3. Compass App // Construct a wedge-shaped path mpath.moveto(0, -50); mpath.lineto(-20, 60); mpath.lineto(0, 50); mpath.lineto(20, 60); protected void ondraw(canvas canvas) { Paint paint = mpaint; canvas.drawcolor(color.white); paint.setantialias(true); paint.setcolor(color.black); paint.setstyle(paint.style.fill); int w = canvas.getwidth(); int h = canvas.getheight(); int cx = w / 2; int cy = h / 2; Page 37
38 Example 3. Compass App canvas.translate(cx, cy); if (mvalues!= null) { canvas.rotate(-mvalues[0]); canvas.drawpath(mpath, protected void onattachedtowindow() { manimate = true; if (Config.DEBUG) Log.d(TAG, "onattachedtowindow. manimate=" + manimate); protected void ondetachedfromwindow() { manimate = false; if (Config.DEBUG) Log.d(TAG, "ondetachedfromwindow. manimate=" + manimate); super.ondetachedfromwindow(); Page 38
App Development for Smart Devices. Lec #5: Android Sensors
App Development for Smart Devices CS 495/595 - Fall 2012 Lec #5: Android Sensors Tamer Nadeem Dept. of Computer Science Objective Working in Background Sensor Manager Examples Sensor Types Page 2 What
Using Sensors on the Android Platform. Andreas Terzis Android N00b
Using Sensors on the Android Platform Andreas Terzis Android N00b Hardware-oriented Features Feature Camera Sensor SensorManager SensorEventListener SensorEvent GeoMagneticField Description A class that
Android Sensors. CPRE 388 Fall 2015 Iowa State University
Android Sensors CPRE 388 Fall 2015 Iowa State University What are sensors? Sense and measure physical and ambient conditions of the device and/or environment Measure motion, touch pressure, orientation,
Using the Android Sensor API
Using the Android Sensor API Juan José Marrón Department of Computer Science & Engineering [email protected] # Outline Sensors description: - Motion Sensors - Environmental Sensors - Positioning Sensors
Sensors & Motion Sensors in Android platform. Minh H Dang CS286 Spring 2013
Sensors & Motion Sensors in Android platform Minh H Dang CS286 Spring 2013 Sensors The Android platform supports three categories of sensors: Motion sensors: measure acceleration forces and rotational
Android Sensor Programming. Weihong Yu
Android Sensor Programming Weihong Yu Sensors Overview The Android platform is ideal for creating innovative applications through the use of sensors. These built-in sensors measure motion, orientation,
Developing Sensor Applications on Intel Atom Processor-Based Android* Phones and Tablets
Developing Sensor Applications on Intel Atom Processor-Based Android* Phones and Tablets This guide provides application developers with an introduction to the Android Sensor framework and discusses how
Android Sensors. XI Jornadas SLCENT de Actualización Informática y Electrónica
Android Sensors XI Jornadas SLCENT de Actualización Informática y Electrónica About me José Juan Sánchez Hernández Android Developer (In my spare time :) Member and collaborator of: - Android Almería Developer
Obsoleted chapter from The Busy Coder's Guide to Advanced Android Development
CHAPTER 13 "" is Android's overall term for ways that Android can detect elements of the physical world around it, from magnetic flux to the movement of the device. Not all devices will have all possible
ELET4133: Embedded Systems. Topic 15 Sensors
ELET4133: Embedded Systems Topic 15 Sensors Agenda What is a sensor? Different types of sensors Detecting sensors Example application of the accelerometer 2 What is a sensor? Piece of hardware that collects
! Sensors in Android devices. ! Motion sensors. ! Accelerometer. ! Gyroscope. ! Supports various sensor related tasks
CSC 472 / 372 Mobile Application Development for Android Prof. Xiaoping Jia School of Computing, CDM DePaul University [email protected] @DePaulSWEng Outline Sensors in Android devices Motion sensors
06 Team Project: Android Development Crash Course; Project Introduction
M. Kranz, P. Lindemann, A. Riener 340.301 UE Principles of Interaction, 2014S 06 Team Project: Android Development Crash Course; Project Introduction April 11, 2014 Priv.-Doz. Dipl.-Ing. Dr. Andreas Riener
Android Framework. How to use and extend it
Android Framework How to use and extend it Lectures 9/10 Android Security Security threats Security gates Android Security model Bound Services Complex interactions with Services Alberto Panizzo 2 Lecture
CSE476 Mobile Application Development. Yard. Doç. Dr. Tacha Serif [email protected]. Department of Computer Engineering Yeditepe University
CSE476 Mobile Application Development Yard. Doç. Dr. Tacha Serif [email protected] Department of Computer Engineering Yeditepe University Fall 2015 Yeditepe University 2015 Outline Bluetooth Connectivity
Android Programming Lecture 18: Menus Sensors 11/11/2011
Android Programming Lecture 18: Menus Sensors 11/11/2011 Simple Menu Example Submenu Example Sensors and Actuators Sensors Sensors provide information about the device and its environment Will ignore camera
Android app development course
Android app development course Unit 7- + Beyond Android Activities. SMS. Audio, video, camera. Sensors 1 SMS We can send an SMS through Android's native client (using an implicit Intent) Intent smsintent
Arduino & Android. A How to on interfacing these two devices. Bryant Tram
Arduino & Android A How to on interfacing these two devices Bryant Tram Contents 1 Overview... 2 2 Other Readings... 2 1. Android Debug Bridge -... 2 2. MicroBridge... 2 3. YouTube tutorial video series
Lab 1 (Reading Sensors & The Android API) Week 3
ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 1 (Reading Sensors & The Android API) Week 3 Prepared by Kirill Morozov version 1.1 Deadline: You must submit the lab to the SVN repository
Using Extensions or Cordova Plugins in your RhoMobile Application Darryn Campbell @darryncampbell
Using Extensions or Cordova Plugins in your RhoMobile Application Darryn Campbell @darryncampbell Application Architect Agenda Creating a Rho Native Extension on Android Converting a Cordova Plugin to
HP TouchPad Sensor Setup for Android
HP TouchPad Sensor Setup for Android Coordinate System The Android device framework uses a 3-axis coordinate system to express data values. For the following HP TouchPad sensors, the coordinate system
Programming Mobile Applications with Android
Programming Mobile Applications 22-26 September, Albacete, Spain Jesus Martínez-Gómez Introduction to advanced android capabilities Maps and locations.- How to use them and limitations. Sensors.- Using
CS 403X Mobile and Ubiquitous Computing Lecture 6: Maps, Sensors, Widget Catalog and Presentations Emmanuel Agu
CS 403X Mobile and Ubiquitous Computing Lecture 6: Maps, Sensors, Widget Catalog and Presentations Emmanuel Agu Using Maps Introducing MapView and Map Activity MapView: UI widget that displays maps MapActivity:
Performance issues in writing Android Apps
Performance issues in writing Android Apps Octav Chipara The process of developing Android apps problem definition focus: define the problem what is the input/out? what is the criteria for success? develop
Android Concepts and Programming TUTORIAL 1
Android Concepts and Programming TUTORIAL 1 Kartik Sankaran [email protected] CS4222 Wireless and Sensor Networks [2 nd Semester 2013-14] 20 th January 2014 Agenda PART 1: Introduction to Android - Simple
How to develop your own app
How to develop your own app It s important that everything on the hardware side and also on the software side of our Android-to-serial converter should be as simple as possible. We have the advantage that
Module 1: Sensor Data Acquisition and Processing in Android
Module 1: Sensor Data Acquisition and Processing in Android 1 Summary This module s goal is to familiarize students with acquiring data from sensors in Android, and processing it to filter noise and to
App Development for Smart Devices. Lec #4: Services and Broadcast Receivers Try It Out
App Development for Smart Devices CS 495/595 - Fall 2013 Lec #4: Services and Broadcast Receivers Try It Out Tamer Nadeem Dept. of Computer Science Try It Out Example 1 (in this slides) Example 2 (in this
Introduction to NaviGenie SDK Client API for Android
Introduction to NaviGenie SDK Client API for Android Overview 3 Data access solutions. 3 Use your own data in a highly optimized form 3 Hardware acceleration support.. 3 Package contents.. 4 Libraries.
Internal Services. CSE 5236: Mobile Application Development Instructor: Adam C. Champion Course Coordinator: Dr. Rajiv Ramnath
Internal Services CSE 5236: Mobile Application Development Instructor: Adam C. Champion Course Coordinator: Dr. Rajiv Ramnath 1 Internal Services Communication: Email, SMS and telephony Audio and video:
E0-245: ASP. Lecture 16+17: Physical Sensors. Dipanjan Gope
E0-245: ASP Lecture 16+17: Physical Sensors Module 2: Android Sensor Applications Location Sensors - Theory of location sensing - Package android.location Physical Sensors - Sensor Manager - Accelerometer
Pedometer Project 1 Mr. Michaud / www.nebomusic.net
Mobile App Design Project Pedometer Using Accelerometer Sensor Description: The Android Phone has a three direction accelerometer sensor that reads the change in speed along three axis (x, y, and z). Programs
Using the Adafruit Unified Sensor Driver. Created by Kevin Townsend
Using the Adafruit Unified Sensor Driver Created by Kevin Townsend Guide Contents Guide Contents Introduction One Type to Rule Them All Why Is This a Good Thing? Adafruit_Sensor in Detail Standardised
Admin. Mobile Software Development Framework: Android Activity, View/ViewGroup, External Resources. Recap: TinyOS. Recap: J2ME Framework
Admin. Mobile Software Development Framework: Android Activity, View/ViewGroup, External Resources Homework 2 questions 10/9/2012 Y. Richard Yang 1 2 Recap: TinyOS Hardware components motivated design
Android Development Tutorial. Nikhil Yadav CSE40816/60816 - Pervasive Health Fall 2011
Android Development Tutorial Nikhil Yadav CSE40816/60816 - Pervasive Health Fall 2011 Database connections Local SQLite and remote access Outline Setting up the Android Development Environment (Windows)
Android Sensors 101. 2014 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. CC-BY Google
Android Sensors 101 Atilla Filiz [email protected] 2014 This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License CC-BY Google These slides are made available to you under
Android. Mobile Computing Design and Implementation. Application Components, Sensors. Peter Börjesson
Android Application Components, Sensors Mobile Computing Design and Implementation Peter Börjesson Application Sandbox Android System & Device Data Contacts, Messages, SD Card, Camera, Bluetooth, etc.
Designing An Android Sensor Subsystem Pitfalls and Considerations
Designing An Android Sensor Subsystem Pitfalls and Considerations Jen Costillo [email protected] Simple Choices User experience Battery performance 7/15/2012 Costillo- OSCON 2012 2 Established or Innovative
AdFalcon Android SDK 2.1.4 Developer's Guide. AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group
AdFalcon Android SDK 214 Developer's Guide AdFalcon Mobile Ad Network Product of Noqoush Mobile Media Group Table of Contents 1 Introduction 3 Supported Android version 3 2 Project Configurations 4 Step
Develop a Hello World project in Android Studio Capture, process, store, and display an image. Other sensors on Android phones
Kuo-Chin Lien Develop a Hello World project in Android Studio Capture, process, store, and display an image on Android phones Other sensors on Android phones If you have been using Eclipse with ADT, be
Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development.
Android Development 101 Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development. Activity In Android, each application (and perhaps each screen
Android Programming: 2D Drawing Part 1: Using ondraw
2012 Marty Hall Android Programming: 2D Drawing Part 1: Using ondraw Originals of Slides and Source Code for Examples: http://www.coreservlets.com/android-tutorial/ Customized Java EE Training: http://courses.coreservlets.com/
Android For Java Developers. Marko Gargenta Marakana
Android For Java Developers Marko Gargenta Marakana Agenda Android History Android and Java Android SDK Hello World! Main Building Blocks Debugging Summary History 2005 Google buys Android, Inc. Work on
Mobile App Sensor Documentation (English Version)
Mobile App Sensor Documentation (English Version) Mobile App Sensor Documentation (English Version) Version: 1.2.1 Date: 2015-03-25 Author: email: Kantar Media spring [email protected] Content Mobile App
Introduction to Android SDK Jordi Linares
Introduction to Android SDK Introduction to Android SDK http://www.android.com Introduction to Android SDK Google -> OHA (Open Handset Alliance) The first truly open and comprehensive platform for mobile
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL II)
Sensor Overview ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL II) Lecture 5: Sensor and Game Development Most Android-powered devices have built-in sensors that measure motion, orientation,
CSE476 Mobile Application Development. Yard. Doç. Dr. Tacha Serif [email protected]. Department of Computer Engineering Yeditepe University
CSE476 Mobile Application Development Yard. Doç. Dr. Tacha Serif [email protected] Department of Computer Engineering Yeditepe University Fall 2015 Yeditepe University 2015 Outline Dalvik Debug
Lecture 1 Introduction to Android
These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy
Frameworks & Android. Programmeertechnieken, Tim Cocx
Frameworks & Android Programmeertechnieken, Tim Cocx Discover thediscover world atthe Leiden world University at Leiden University Software maken is hergebruiken The majority of programming activities
TUTORIAL. BUILDING A SIMPLE MAPPING APPLICATION
Cleveland State University CIS493. Mobile Application Development Using Android TUTORIAL. BUILDING A SIMPLE MAPPING APPLICATION The goal of this tutorial is to create a simple mapping application that
Android Introduction. Hello World. @2010 Mihail L. Sichitiu 1
Android Introduction Hello World @2010 Mihail L. Sichitiu 1 Goal Create a very simple application Run it on a real device Run it on the emulator Examine its structure @2010 Mihail L. Sichitiu 2 Google
Mobile Application Development Android
Mobile Application Development Android MTAT.03.262 Satish Srirama [email protected] Goal Give you an idea of how to start developing Android applications Introduce major Android application concepts
Creating a List UI with Android. Michele Schimd - 2013
Creating a List UI with Android Michele Schimd - 2013 ListActivity Direct subclass of Activity By default a ListView instance is already created and rendered as the layout of the activity mylistactivit.getlistview();
Kathy Au Billy Yi Fan Zhou Department of Electrical and Computer Engineering University of Toronto { kathy.au, billy.zhou }@utoronto.
ECE1778 Project Report Kathy Au Billy Yi Fan Zhou Department of Electrical and Computer Engineering University of Toronto { kathy.au, billy.zhou }@utoronto.ca Executive Summary The goal of this project
ELDERLY SUPPORT - ANDROID APPLICATION FOR FALL DETECTION AND TRACKING TEJITHA RUDRARAJU. B.E, Anna University, India, 2011 A REPORT
ELDERLY SUPPORT - ANDROID APPLICATION FOR FALL DETECTION AND TRACKING By TEJITHA RUDRARAJU B.E, Anna University, India, 2011 A REPORT Submitted in partial fulfillment of the requirements for the degree
An Introduction to Android Application Development. Serdar Akın, Haluk Tüfekçi
An Introduction to Android Application Serdar Akın, Haluk Tüfekçi ARDIC ARGE http://www.ardictech.com April 2011 Environment Programming Languages Java (Officially supported) C (Android NDK Needed) C++
Android Development. Marc Mc Loughlin
Android Development Marc Mc Loughlin Android Development Android Developer Website:h:p://developer.android.com/ Dev Guide Reference Resources Video / Blog SeCng up the SDK h:p://developer.android.com/sdk/
MMI 2: Mobile Human- Computer Interaction Android
MMI 2: Mobile Human- Computer Interaction Android Prof. Dr. [email protected] Mobile Interaction Lab, LMU München Android Software Stack Applications Java SDK Activities Views Resources Animation
Android Basics. Xin Yang 2016-05-06
Android Basics Xin Yang 2016-05-06 1 Outline of Lectures Lecture 1 (45mins) Android Basics Programming environment Components of an Android app Activity, lifecycle, intent Android anatomy Lecture 2 (45mins)
Tutorial #1. Android Application Development Advanced Hello World App
Tutorial #1 Android Application Development Advanced Hello World App 1. Create a new Android Project 1. Open Eclipse 2. Click the menu File -> New -> Other. 3. Expand the Android folder and select Android
Android Java Live and In Action
Android Java Live and In Action Norman McEntire Founder, Servin Corp UCSD Extension Instructor [email protected] Copyright (c) 2013 Servin Corp 1 Opening Remarks Welcome! Thank you! My promise
Affdex SDK for Android. Developer Guide For SDK version 1.0
Affdex SDK for Android Developer Guide For SDK version 1.0 www.affdex.com/mobile-sdk 1 August 4, 2014 Introduction The Affdex SDK is the culmination of years of scientific research into emotion detection,
4. The Android System
4. The Android System 4. The Android System System-on-Chip Emulator Overview of the Android System Stack Anatomy of an Android Application 73 / 303 4. The Android System Help Yourself Android Java Development
App Development for Smart Devices. Lec #4: Files, Saving State, and Preferences
App Development for Smart Devices CS 495/595 - Fall 2011 Lec #4: Files, Saving State, and Preferences Tamer Nadeem Dept. of Computer Science Some slides adapted from Stephen Intille Objective Data Storage
Android Services. Android. Victor Matos
Lesson 22 Android Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html Portions of this page are reproduced from work created and shared
AUTOMATIC HUMAN FREE FALL DETECTION USING ANDROID
AUTOMATIC HUMAN FREE FALL DETECTION USING ANDROID Mrs.P.Booma devi 1, Mr.S.P.Rensingh Xavier 2 Assistant Professor, Department of EEE, Ratnavel Subramaniam College of Engineering and Technology, Dindigul
Chapter 2 Getting Started
Welcome to Android Chapter 2 Getting Started Android SDK contains: API Libraries Developer Tools Documentation Sample Code Best development environment is Eclipse with the Android Developer Tool (ADT)
MAP524/DPS924 MOBILE APP DEVELOPMENT (ANDROID) MIDTERM TEST OCTOBER 2013 STUDENT NAME STUDENT NUMBER
MAP524/DPS924 MOBILE APP DEVELOPMENT (ANDROID) MIDTERM TEST OCTOBER 2013 STUDENT NAME STUDENT NUMBER Please answer all questions on the question sheet This is an open book/notes test. You are allowed to
Mono for Android Activity Lifecycle Activity Lifecycle Concepts and Overview
Mono for Android Lifecycle Lifecycle Concepts and Overview Xamarin Inc. BRIEF Overview Activities are a fundamental building block of Android Applications and they can exist in a number of different states.
WEARIT DEVELOPER DOCUMENTATION 0.2 preliminary release July 20 th, 2013
WEARIT DEVELOPER DOCUMENTATION 0.2 preliminary release July 20 th, 2013 The informations contained in this document are subject to change without notice and should not be construed as a commitment by Si14
Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To
The Android Developer's Cookbook Building Applications with the Android SDK James Steele Nelson To A Addison-Wesley Upper Saddle River, NJ Boston «Indianapolis San Francisco New York Toronto Montreal London
Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i
Android Printing Framework ISB Vietnam Co., Ltd. (IVC) Page i Table of Content 1 Introduction... 1 2 Terms and definitions... 1 3 Developer guide... 1 3.1 Overview... 1 3.2 Configure development environment...
Fitness Motion Recognition
Fitness Motion Recognition with Android Wear Edward Dale Freeletics Edward Dale, 2015 1 http://www.someecards.com/usercards/viewcard/mjaxmy1hmjiwmwuzmtc4ndgyota1 Edward Dale, 2015 2 Agenda Define scope
Android Application Model
Android Application Model Content - Activities - Intent - Tasks / Applications - Lifecycle - Processes and Thread - Services - Content Provider Dominik Gruntz IMVS [email protected] 1 Android Software
Q1. What method you should override to use Android menu system?
AND-401 Exam Sample: Q1. What method you should override to use Android menu system? a. oncreateoptionsmenu() b. oncreatemenu() c. onmenucreated() d. oncreatecontextmenu() Answer: A Q2. What Activity method
directory to "d:\myproject\android". Hereafter, I shall denote the android installed directory as
1 of 6 2011-03-01 12:16 AM yet another insignificant programming notes... HOME Android SDK 2.2 How to Install and Get Started Introduction Android is a mobile operating system developed by Google, which
AN4503 Application note
AN4503 Application note Environmental sensors: Hardware abstraction layer for Android Introduction By Lorenzo Sarchi This application note provides guidelines for successfully integrating STMicroelectronics
Tegra Android Accelerometer Whitepaper
Tegra Android Accelerometer Whitepaper Version 5-1 - Contents INTRODUCTION 3 COORDINATE SPACE GLOSSARY 4 ACCELEROMETER CANONICAL AXES 6 WORKING WITH ACCELEROMETER DATA 7 POWER CONSERVATION 10 SUPPORTING
Android Fundamentals 1
Android Fundamentals 1 What is Android? Android is a lightweight OS aimed at mobile devices. It is essentially a software stack built on top of the Linux kernel. Libraries have been provided to make tasks
Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 2 Android Platform. Marco Picone - 2012
Android Development Lecture 2 Android Platform Università Degli Studi di Parma Lecture Summary 2 The Android Platform Dalvik Virtual Machine Application Sandbox Security and Permissions Traditional Programming
FRC WPI Robotics Library Overview
FRC WPI Robotics Library Overview Contents 1.1 Introduction 1.2 RobotDrive 1.3 Sensors 1.4 Actuators 1.5 I/O 1.6 Driver Station 1.7 Compressor 1.8 Camera 1.9 Utilities 1.10 Conclusion Introduction In this
