Add to the Coffee Ordering App

Slides:



Advertisements
Similar presentations
Support.ebsco.com EBSCOhost Mobile Tutorial. Welcome to the EBSCOhost Mobile tutorial, a guide to the most popular EBSCOhost features available for use.
Advertisements

AO- 2 (part 2 of 2) Pass + Send. Receive. Reply. Forward. With more than 1 attachment.
Effective Creating Address groups Using Address groups Attaching Documents Copyright Gary Maunder, 2003 Nipawin School Division No.61,
Outlook 2010 Quick Guide Table of Contents: Overview of client, Sending/Receiving , Using the address book………..……… Sent Items……………………………………………………………………………………………..…..8.
Outlook 2013 Web App (OWA) User Guide Horizon School Division #205.
Google Apps: Google Mail Got Gmail?....Need Help? Mrs. Connor.
Using a Template to Create a Resume and Sharing a Finished Document
Discussions. Overview Introduction Composing Sending an Attachment Viewing Downloading an Attachment Replying.
CAHE Technology Help Desk ● (505) ● ● Intermediate Word – Part III Mail Merge.
1 of 3 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
1 of 4 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
Introduction to . What is ? is electronic mail that allows users to send messages and files (pictures, documents, etc) to another person.
Using Microsoft Outlook: Basics. Objectives Guided Tour of Outlook –Identification –Views Basics –Contacts –Folders –Web Access Q&A.
Department of Information Technology e-Michigan Web Development 0 HTML Form Creation in the Vignette Content Management Application.
Help Course summary Press F5 to start, Esc to stop Course summary—Send and open attachments Create an Outlook signature You can create signatures in Outlook.
Outlook 2000 Summertime Technology 2002 Vicki Blackwell Tangipahoa Parish Schools.
Chapter 5: Investigate! Lists, Arrays, and Web Browsers.
Project Four Forms Discuss form processing Describe the difference between client-side and server-side form processing Add a horizontal rule to a Web page.
Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 5: Investigate! Android Lists, Arrays,
CS378 - Mobile Computing Intents.
COMPREHENSIVE Windows Tutorial 4 Working with the Internet and .
Click your mouse to continue. Ways to Merge Data When you have finished editing your main document and inserting the merge fields, you have several choices.
Windows Tutorial 4 Working with the Internet and
Unit - R Create a folder In your ICT folder and Name it as R002_Skills_for_business. 2. Your folder structure should look like this R002_Skills_for_business.
CS378 - Mobile Computing Intents. Allow us to use applications and components that are part of Android System – start activities – start services – deliver.
Basics.
Outlook Web App Crash course. Outlook Agenda Login Login Reset Password Reset Password Getting Started in Outlook Web App Getting Started in Outlook Web.
© 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.
How to Post my Response. Click! To reply or respond to an existing topic/question, start by reading the message in the topic. Reply from within each.
Topics Sending an Multipart message Storing images Getting confirmation Session tracking using PHP Graphics Input Validators Cookies.
Exchange 2013 Web App (OWA) User Guide. Table of Contents How to Logon Opening View Navigation Mail Contacts Calendar 2.
Workflows II: Collect feedback for a file How to collect feedback Collecting feedback for a file can be challenging. However, if you save a file to a document.
Managing Your Inbox. Flagging Messages Message requires a specific response or action from the recipient Flagging draws attention to your request Quick.
Theme 1: Expansion of the home office Topic 3: Become more comfortable with Internet Explorer and Textbook: Chapter 1.2, P
(Electronic Mail) a message sent and received electronically via telecommunication links between computers.
Java Internet Café Internet Basics.
Google Docs Tutorial. Go to Click on Sign In.
Lesson 17 Mail Merge. Overview Create a main document. Create a data source. Insert merge fields into a main document. Perform a mail merge. Use data.
Chapter 5: Investigate! Lists, Arrays, and Web Browsers.
Chapter 5 Using a Template to Create a Resume and Sharing a Finished Document Microsoft Word 2013.
1 After completing this lesson, you will be able to: Create and edit hyperlinks in worksheets. Save worksheets and workbooks as Web pages. Send workbooks.
Android Mobile Application Development
Wiki Wiki – A collection of web pages that can be edited by a group.
Chapter 1 Managing Messages with Outlook
myROR.org Discussion Forum Tutorial
Outlook Mobile App for Android
How to Create a Remind Classroom
Venture A guide to Advance ing
Using the HTML and CSS Validation Services
Mail Merge And Macros in MS WORD
WHAT ARE THE STEPS TO SEND AN ATTACHMENT WITH YAHOO! MAIL?
Firebase Cloud messaging A primer
Remind Tutorial.
CS323 Android Getting Started
Upgrade (Exchange 2013/Office 365)
Android Topics UI Thread and Limited processing resources
How to send messages to students and other SimpleVLE users
Android Topics What are Intents? Implicit Intents vs. Explicit Intents
Android Topics Threads and the MessageQueue
Mrs. Hollensbe Computer Literacy
Shelly Cashman: Microsoft Word 2016
Hyperlinks Links for .
Google 1st – Go to the HHS website by clicking the Google Chrome button. Close any extra tabs if you have more than one open. 2nd – Click either.
Using Microsoft Outlook: Outlook Support Number
How to Use Yamm Yet Another Mail Merge.
Google POP QUIZ Work with your table. Record your answers and put a checkmark in the box for each correctly answered question.
How to a Document Using Gmail? | GMAIL CUSTOMER SERVICE NUMBER
How to Send an Encrypted in Gmail on Android? | Gmail Technical Support Number
Presentation transcript:

Add email to the Coffee Ordering App Android Topics Add email to the Coffee Ordering App

Objectives In this in-class coding app, you will use an intent to send an order summary to an email app. You should already have taken some time to experiment with writing code for different intents listed in the Common Intents guide. TIP: If you have no idea how to accomplish this: Research the common intents guide from the official Android Documentation. This site is very helpful for showing you how to send an intent to compose an email with optional attachments. Do a web search. Look at Stack Overflow posts and tutorials.

Create a new intent object and pass the Intent.ACTION_SENDTO argument. Set the data to be a URI of this format, "mailto:", that way all the email apps will handle this intent. Add some extra data into the intent. Specify the subject of the e-mail message. Add the person’s name.   Add the necessary intent extras for each additional piece of information you want to provide about the email. For example, intent extra about the recipients of the email Intent.EXTRA about the subject line of the email. Intent.EXTRA to specify the body of the email. Intent.EXTRA_TEXT is a constant defined in the intent java class as a string in the intent class. Populate this extra, containing the body of the email message. When the email app receives the intent, it will know to check for this intent extra to find the body of email and then it can populate that. The body of the email is the order summary. Check if there's an activity on the device to handle this intent. If there is then it's safe to send the intent and recall start activity using this intent. If there's no activity on the device to handle the intent, then we skip this block of code and we skip sending the intent. Run the app on our device. Now when I click on the order button, it sends an intent to an email app on the device. By default, the Gmail app is going to handle this intent. Tasks