Android, where is my car? Summary. This is the just the summary of topic after it was taught in the lecture class. The LocationSensor component can report.

Slides:



Advertisements
Similar presentations
Understanding an Apps Architecture ASFA Computer Science: Principles Fall 2013.
Advertisements

Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
Lecture 6/2/12. Forms and PHP The PHP $_GET and $_POST variables are used to retrieve information from forms, like user input When dealing with HTML forms.
Community Mapping ACM Mid-Southeast Conference November 12, 2010
Smartphone Apps Development Team Weiqing Li Lijun Zhu Man Li.
靜宜大學資管系 楊子青 1 Programming Your App’s Memory 靜宜大學資管系 楊子青
Programming with App Inventor Storing Data
Richard Yu.  Present view of the world that is: Enhanced by computers Mix real and virtual sensory input  Most common AR is visual Mixed reality virtual.
Sensors. Point your phone at the sky, and Google Sky Map tells you which stars you’re looking at. Tilt your phone, and you can control the game you’re.
Google Android Map API Presentation 13/03/2008. Map API – Overview (1) Map rendering facility on Android device Similar to Google Earth Integrate map.
A Guide to Oracle9i1 Advanced Forms Builder Topics Chapter 10.
8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors.
A Guide to Oracle9i1 Creating an Integrated Database Application Chapter 8.
Salesforce1 Mobile App Jan
School location collector
Ch 14. Understanding an App’s Architecture Two perspectives 1.Programmer: a)Components & Behaviour b)Designed in Component designer Blocks editor 2.End-user:
Creating Mobile Apps with App Inventor! Day 5 Google search Kris Gordon Ludlow for links.
BY LINDA MOHAISEN MIKE ZIELINSKI The Tree Census Project.
ACS-1805 Introduction to Programming 1805 introduces students to programming using technology for creating programs that run on Android devices. Android:
CS 104 October 26, 2011 App Inventor. Agenda Discuss guest speakers Discuss quiz Finish Paint Pot Discuss concepts from Chapters 2 & 3 Mole Mash (if time.
By: Simon Kleinsmith Supervisor: Mr Mehrdad Ghaziasgar Co-supervisor: Mr James Connan.
Chapter 5: Investigate! Lists, Arrays, and Web Browsers.
GIS DATA SOURCES Getting maps into the Computer Adding Data from existing tables.
WC2011 Programming Mobile Devices Android Development Day 2.
Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 5: Investigate! Android Lists, Arrays,
Creating Web Applications Using ASP.NET Chapter Microsoft Visual Basic.NET: Reloaded 1.
Introduction to ArcGIS for Environmental Scientists Module 1 – Data Visualization Chapter 1 – GIS Basics.
Integrating JavaScript and HTML5 HTML5 & CSS 7 th Edition.
Requirements for Submitting your application Kimberly Belton.
1 Dr Na Yao Phone apps, Computer Software Teaching EBU5502 Database (JP) EBU714U Security and Authentication (JP) ECS608U Distributed systems and Security.
Android - Project Green basket Android Application * Let's you do your grocery shopping location based. * Let's you decide to go to the closest grocery.
DUE Introduction to the Android Platform Working Connections 2011.
The Mobile CRM Conference 2015 September 14-15, 2015 in Boston, MA Take Your CRM to the Next Level.
© 2016 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part. Android Boot Camp.
{ Lost Object Locator Status Report #1, Josues Gonzalez Russell Pool John Jenkinson Miguel Alvarez Tracking device with phone application.
Location Aware Information System (LAIS) Neftali Alverio Bryan Halter Jeff Cardillo Brian Reed Advisor: Prof. Tilman Wolf.
 Has your mom ever called or texted you, asking where you were?  Did you tell her your relative or absolute location?
Final project presentation by Alsharidah, Mosaed.
The Pocket GPS By: Samantha Rossman Tom Whitson. Goal of the Project: Display: Latitude Longitude Speed Direction Date & Time GPS should be small enough.
Geographic Data in GIS. Components of geographic data Three general components to geographic information Three general components to geographic information.
learn. do. dream. Going Native Native Application Integration Attachments Camera GPS Mail Maps Phone Voice Input.
Current Search Website Marketing User Group Meeting September 18 and 19, 2008.
{ Lost Object Locator Status Report #3, Josues Gonzalez Russell Pool John Jenkinson Miguel Alvarez Tracking device with phone application.
Latitude and Longitude: Scavenger Hunt
Microsoft Access Database Creation and Management.
Cosc 5/4730 Android Maps v2 Blackberry Maps. Android.
App Inventor for Android 唐健恒. Outline About App Inventor Getting started Tutorials Reference Documentation  Component Reference  Blocks Reference.
The GPS Tools Form Maintaining spatial data about assets, events and other objects.
1 NETE4631 Using Google Web Services Lecture Notes #6.
Notes: **A Row is considered one Record. **A Column is a Field. A Database is…  an organized set of stored information usually on one topic  a collection.
CU Student Organizer Trey McAlhany CPSC 482 Mobile Software Development Clemson University April 7, 2015.
Pervasive Radar Social Collaborative Augmented Reality Tool Presented By: Muthanna Abdulhussein M7012 Pervasive Computing Final Project Presentation.
1. This presentation walks through the Citizens’ App from App-Order.com The app is comprised of a Smartphone module and a web-based module. The Smartphone.
Test1 Here some text. Text 2 More text.
A little more App Inventor and Mind the GAP!
Tracking device movements
What this activity will show you
By Dan Gotlund & Eric Acierto
User Guide – Apple / Android
Visual Programming week # 02 APP (Application) Architecture.
Understanding an App’s Architecture
Sensors, maps and fragments:
Mapping the schoolyard geographically
[type text here] [type text here] [type text here] [type text here]
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
Android Topics What are Intents? Implicit Intents vs. Explicit Intents
Your text here Your text here Your text here Your text here
[type text here] [type text here] [type text here] [type text here]
Programming Lists of Data 靜宜大學資管系 楊子青
Location Based Reminding System
Presentation transcript:

Android, where is my car? Summary

This is the just the summary of topic after it was taught in the lecture class. The LocationSensor component can report the user’s latitude, longitude, and current street address. Its LocationChanged event is triggered when the sensor gets its first reading and when the reading changes (the device has moved). For more information on the LocationSensor, see Chapter 23.

The ActivityStarter component can launch any app, including Google Maps. For Maps, you set the DataUri property to the URL of the map you want to display. If you want to show directions between GPS coordinates, the URL will be in the following format, but you’d replace the sample data shown here with actual GPS coordinates: dr=0.2,0.2

make text is used to piece together (concatenate) separate text items into a single text object. It allows you to concatenate dynamic data with static text. With the Maps URL, the GPS coordinates are the dynamic data.

TinyDB allows you to store data persistently in the phone’s database. Whereas the data in a variable or property is lost when an app closes, data stored in the database can be loaded each time the app is opened. For more information on TinyDB and databases, see Chapter 22.