2. Click the download button for your operating system (Windows, Mac, or Linux).
|
|
|
- Berniece Doyle
- 10 years ago
- Views:
Transcription
1 Table of Contents: Using Android Studio 1 Installing Android Studio 1 Installing IntelliJ IDEA Community Edition 3 Downloading My Book's Examples 4 Launching Android Studio and Importing an Android Project 4 Launching IDEA and Importing a Desktop Java Project 9 Creating Your Own App 15 Embellishing Your App 17 Using Android Studio Welcome to the "emergency" chapter for readers of my two books -- Java Programming for Android Developers For Dummies Android Application Development All-in-One For Dummies I'm currently working on a second edition of the All-in-One book, but you probably don't want to wait for that edition to become available. In the meantime, note that the stewards of Android have changed their page. They now support Android Studio as the official development platform for Android apps. TIP: You can still use Eclipse if you decide to do so, but it's clear to everyone that Android Studio is "in" and Eclipse with Android tooling is very "yesterday." If you want to use Eclipse, visit eclipse.org and get Eclipse for Java Developers. After installing Eclipse for Java Developers, follow the instructions at to add the ADT (Android Developer Tools) to Eclipse. Anyway, I've pasted together some instructions on running my book's examples with Android Studio. Please any questions that you have to me at mailto:[email protected]. Installing Android Studio 1. Visit 2. Click the download button for your operating system (Windows, Mac, or Linux). 3. (On a Mac :) Double-click the downloaded.dmg file's icon. In the resulting Finder window, drag Android Studio (or Android Studio.app) to the Applications folder. (On Windows :) Double-clicking the.exe file's icon. And follow the steps in the resulting wizard. Here are some of the wizard steps that I see when I install Android Studio on Windows: 1
2 2 (I had no special reason for changing the memory value from Recommended to Custom. I was just goofing around with the settings.)
3 By default, when you install Android Studio, you also get an Android virtual device (AVD), so you can skip any instructions in the book for adding an AVD. Installing IntelliJ IDEA Community Edition My Java Programming for Android Developers book contains both Android apps and plain old desktop Java programs. I've heard rumors that you can run desktop Java programs in Android Studio. But doing so means applying several workarounds, and that can be confusing. So for the desktop Java programs, I recommend installing Android Studio's parent IDE; namely, IntelliJ IDEA from JetBrains. Remember: If you have the All-in-One book, you don't have to install IntelliJ IDEA. 1. Visit 2. Look for the download button for IntelliJ IDEA Community Edition. 3. Download and install the software. The steps for doing the download should be similar to the steps given above for Android Studio. After installing Android Studio and IntelliJ IDEA, follow these steps. 3
4 Downloading My Book's Examples 1. Visit (for the All-in-One book) or (for the Java Programming for Android book). 2. On either page, click the link to download the code examples for Android Studio. 3. When the download is finished, double-click the downloaded file's icon to uncompress the file. In case you're wondering, other words for "uncompressing" are "unzipping" and "expanding." 4. Note the location of the uncompressed folder on your computer's hard drive. Launching Android Studio and Importing an Android Project REMEMBER: For an app that involves two different projects (projects such as and Other), you must get Android Studio to run both projects (on the same emulator or the same Android device). 1. Double-click the Android Studio app's icon. A Welcome screen appears. 4
5 2. In the Welcome screen, select Open and Existing Android Studio Project. An Open Project dialog box appears. 3. Navigate to the folder containing one of my Android apps. REMEMBER: In the All-in-One book, the first Android app is in Listing 3-1 in Book I. (So the folder's name is ). In the Java Programming for Android Developers book, the first Android app is in Listing 4-1, not Listing 3-1. (So the folder's name is ) 4. Select the build.gradle file inside that folder. 5. Click OK. As a result, Android Studio's main window opens. The project's files appear on the left side (in the Project tool window). 6. To see my app's Java code, go to the Project tool window, and double-click the app/java/com.example.myfirstandroidapp/mainactivity branch. 5
6 When you do, my Java code appears on the right side (in Android Studio's editor). (The name immediately under the Java branch might not be com.example.myfirstandroidapp, and the activity's name might not be MainActivity. One way or another, look for a branch with the name Activity in it.) 7. To see my app's layout, go to the Project tool window, and double-click the app/res/layout/activity_main.xml (or maybe app/res/layout/main.xml) branch. When you do, the Designer tool appears on the right side of Android Studio's main window. The Designer tool is in one of two modes. In Design mode, you see the Palette, a preview screen, the Component tree, and a Properties pane. In Text mode, you see XML code and a preview screen. 6
7 Use the tabs in the lower left corner of the Designer tool to switch between Design mode and Text mode. 8. To run the project, go to Android Studio's main menu and click Run Run 'app'. As a result, you see a Choose Device dialog box. REMEMBER: For an app that involves two different projects (projects such as and Other), you must get Android Studio to run both projects (on the same emulator or the same Android device). One of the projects might not have any main activities. In that case, you might see an Edit Configuration dialog box. In that case, select the Do Not Launch Activity option, and then click the Run button. 7
8 9. If you've already started an emulator running, select Choose a Running Device. If you haven't already started an emulator running, select Launch Emulator. In the Android Virtual Device dropdown list, select an AVD whose level number is at least as high is the app's minimum API level. (If you're not sure about this, just give any option in the dropdown list a try. You can read more about this issue in either book.) TIP: For a better emulator experience, try the third-party Genymotion emulator. You can also try running apps on a real Android device (one that's connected to your development computer via USB.) For instructions on running apps on real devices, check out the appropriate sections in one of my books. 10. Click OK. After a painfully long wait, an emulator window appears on your development computer's screen. The emulator window's screen looks like an Android phone when you turn it on. Eventually, you see the phone's lock screen. 11. With your mouse, do whatever you have to do in order to unlock the emulator screen. (Usually, a simple swipe does the trick.) 8
9 Eventually, the app appears on your emulator's screen. Launching IDEA and Importing a Desktop Java Project Remember: If you have the All-in-One book, you can skip these Desktop Java instructions. 1. Double-click the IntelliJ IDEA app's icon. A Welcome screen appears. 2. In the Welcome screen, select Import Project. A Select File or Directory to Import dialog box appears. 9
10 3. Navigate to the folder containing one of my desktop Java apps. In the Java Programming for Android Developers book, the first desktop Java app is in Listing 3-1 (so the folder's name is 03-01). I put desktop Java apps inside a folder named Java4Android_IDEAJan2014, and put Android apps inside a folder named Java4Android_AndroidStudioJan2015. If you're in doubt, you can usually tell which folders contain Android projects and which folders contain desktop Java projects by looking for a res subfolder. The folders that contain res subfolders are Android projects. Open these projects in Android Studio. The folders that don't contain res subfolders are desktop Java projects. 4. Click OK. Open these projects in IntelliJ IDEA. As a result, you see several more dialog boxes. You can accept the defaults in each of these boxes. 10
11 11
12 12
13 13 If you see Nothing to Show on the left side...
14 Eventually, IDEA's main window opens. The project's files appear on the left side (in the Project tool window). 5. To see my program's Java code, go to the Project tool window, and double-click the 03-01/src/MortgageWindow.java/MortgageWindow branch. When you do, my Java code appears on the right side (in IDEA's editor). (If the project that you've opened isn't 03-01, the name immediately under the src branch might not be MortgageWindow.java, and the name immediately under the whatever.java branch won't be MortgageWindow. Adjust your mouse clicks accordingly.) 6. To run the project, go to IDEA's main menu and click Run Run 'MortgageWindow'. As a result, the app starts running on your computer's screen. 14
15 Creating Your Own App Here's how you create an app: 1. Launch Android Studio. When you do, you'll see either Android Studio's main window or the Welcome screen. 2. If you see the main window, click File New Project. If you see the Welcome screen, click Start a New Android Studio Project. A New Project dialog box appears. 3. Fill in the fields in the New Project dialog box, and then click Next. If you're just practicing (that is, if you're not creating an app for distribution to the public), you can accept all the defaults. For public distribution, you want a catchy Application Name. You also want a package name that uniquely identifies you and this app. If you have a domain name, start by reversing the domain name and then adding a word to identify this particular app. In the figure in Step 2, the domain name is example.com, and the app's identifying info is myapplication. 15
16 When you press Next, the next page of the New Project dialog box appears. 4. For a practice app, accept the defaults (Phone and Tablet with Minimum SDK API 15), and then click Next. For advice on Minimum SDKs and such things, see the appropriate sections of either book. When you press Next, yet another page of the New Project dialog box appears. 5. For a practice app, accept the default (Blank Activity), and then click Next. You guessed it! When you press Next, another page of the New Project dialog box appears. 16
17 Accept the defaults and click Finish! As a result, the new application appears in Android Studio's main window. Embellishing Your App In this section, you add functionality to the basic Android app: 1. Follow the steps in the previous section (entitled "Creating Your Own App"). As a result, you see the new app's Designer tool with the Palette and the big preview screen. (Refer to the final figure in the "Creating Your Own App" section.) 17
18 2. If you don't see the Designer tool, navigate to the app/res/layout branch on the left side of Android Studio's main window, and double-click the activity_main.xml item. Remember: The Designer tool has two modes: the Design mode and the Text mode. The mode that you want is the Design mode. To switch between modes click the tabs in the lower left corner of the Designer tool. 3. In the Widgets group of the Palette, click the CheckBox item. 4. Click anywhere inside the preview screen. As a result, a CheckBox item appears in your preview screen. TIP: You don't have to do two clicks, as in Steps 3 and 4. Instead, you can drag directly from the CheckBox item in the palette to the preview screen. 5. Repeat Steps 3 and 4 for another CheckBox item. 6. Repeat Steps 3 and 4 for Button item. 7. Repeat Steps 3 and 4 for Plain TextView item. Here's what the preview screen looks like now. 18
19 8. In the preview screen, double-click the first CheckBox. A Properties popup appears. 9. In the Properties popup's Text field, type Pepperoni. Then press Enter. As a result, the checkbox's label changes to Pepperoni. 10. Repeat Steps 8 and 9 for the second checkbox. Change its label to Extra Cheese. 11. Repeat Steps 8 and 9 for the button. Change its label to Show. 12. Repeat Steps 8 and 9 for the Plain TextView. Change its text to the word Plain. (In case you're wondering, the fact that this TextView item is a Plain TextView has nothing to do with typing the word Plain in this step. A Plain TextVIew isn't necessarily associated with a plain pizza.) When you've finished Step 12, the preview screen looks like this: 19
20 13. In the preview screen, select the button. 14. In the Properties pane (in the lower-right part of the main window) look for the onclick item. 15. Type onbuttonclick, and then click your mouse in a neutral spot outside of the Properties pane. 16. In Android Studio's main menu, select File Save All. Better Save than sorry! 17. In the Project tool window, double-click the app/java/com.example.myapplication/mainactivity branch. 20
21 The MainActivity class's code appears in Android Studio's editor. WARNING: Instead of public class MainActivity extends ActionBarActivity in the editor's code, you might see public class MainActivity extends Activity You might also see something like import android.support.v7.app.actionbaractivity; near the top of the code. There are bound to be some other differences between what your computer shows you and what I describe in these notes and in the book. For now, you can ignore these differences. 18. Modify the code by adding several lines, as is shown below. The lines that you add are set in green boldface type. (If see extends ActionBarActivity instead of extends Activity, you can change it to extends Activity or leave it as it is. Either way, the app will work.) package com.example.myapplication; import android.app.activity; import android.os.bundle; import android.view.menu; 21
22 import android.view.menuitem; import android.view.view; import android.widget.checkbox; import android.widget.textview; public class MainActivity extends Activity { TextView textview; CheckBox pepbox, protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); } pepbox = (CheckBox) findviewbyid(r.id.checkbox); cheesebox = (CheckBox) findviewbyid(r.id.checkbox2); textview = (TextView) findviewbyid(r.id.textview2); public void onbuttonclick(view view) { StringBuilder str = new StringBuilder(""); if (pepbox.ischecked()) { str.append("pepperoni" + " "); } if (cheesebox.ischecked()) { str.append("extra cheese"); } if (str.length() == 0) { str.append("plain"); } textview.settext(str); public boolean oncreateoptionsmenu(menu menu) { getmenuinflater().inflate(r.menu.menu_main, menu); return true; public boolean onoptionsitemselected(menuitem item) { int id = item.getitemid(); if (id == R.id.action_settings) { return true; } 22
23 } } return super.onoptionsitemselected(item); TIP: When you type the word TextView or the word CheckBox, the word's typeface might be red in Android Studio's editor. If so, it might mean that you haven't yet typed in the appropriate import declaration near the top of the editor. If you want to avoid typing the import declaration, click your mouse on the red word, and then press Alt+Enter. With any luck, Android Studio will add the import declaration automatically for you. 19. In Android Studio's main menu, select File Save All. 20. In Android Studio's main menu, select Run Run 'app'. Heed all the advice about running an app that I provided in the "Launching Android Studio and Importing an Android Project" section. A successful run of the app looks like this: That's it. If you have any comments about this document, or if you have any other questions about Android Studio or about any of the examples in my book, me at [email protected]. You can also tweet me or send a Facebook message to /allmycode. Happy coding! 23
Getting Started: Creating a Simple App
Getting Started: Creating a Simple App What You will Learn: Setting up your development environment Creating a simple app Personalizing your app Running your app on an emulator The goal of this hour is
Getting Started with Android
Mobile Application Development Lecture 02 Imran Ihsan Getting Started with Android Before we can run a simple Hello World App we need to install the programming environment. We will run Hello World on
Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系
Android Development http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android 3D 1. Design 2. Develop Training API Guides Reference 3. Distribute 2 Development Training Get Started Building
Android Environment SDK
Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android
How to build your first Android Application in Windows
APPLICATION NOTE How to build your first Android Application in Windows 3/30/2012 Created by: Micah Zastrow Abstract This application note is designed to teach the reader how to setup the Android Development
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) Who am I? Lo Chi Wing, Peter Lecture 1: Introduction to Android Development Email: [email protected] Facebook: http://www.facebook.com/peterlo111
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 Environment SDK
Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android
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
Getting Started with Android Development
Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient
Download and Installation Instructions. Android SDK and Android Development Tools (ADT)
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Mac OS X Updated October, 2012 This document will describe how to download and install the Android SDK and
Android Application Development: Hands- On. Dr. Jogesh K. Muppala [email protected]
Android Application Development: Hands- On Dr. Jogesh K. Muppala [email protected] Wi-Fi Access Wi-Fi Access Account Name: aadc201312 2 The Android Wave! 3 Hello, Android! Configure the Android SDK SDK
Installing Java 5.0 and Eclipse on Mac OS X
Installing Java 5.0 and Eclipse on Mac OS X This page tells you how to download Java 5.0 and Eclipse for Mac OS X. If you need help, Blitz [email protected]. You must be running Mac OS 10.4 or later
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
Advantages. manage port forwarding, set breakpoints, and view thread and process information directly
Part 2 a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android
Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012
Setting Up Your Android Development Environment For Mac OS X (10.6.8) v1.0 By GoNorthWest 3 April 2012 Setting up the Android development environment can be a bit well challenging if you don t have all
Hello World. by Elliot Khazon
Hello World by Elliot Khazon Prerequisites JAVA SDK 1.5 or 1.6 Windows XP (32-bit) or Vista (32- or 64-bit) 1 + more Gig of memory 1.7 Ghz+ CPU Tools Eclipse IDE 3.4 or 3.5 SDK starter package Installation
Setting up Sudoku example on Android Studio
Installing Android Studio 1 Setting up Sudoku example on Android Studio Installing Android Studio Android Studio provides everything you need to start developing apps for Android, including the Android
Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18
Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Cuong Nguyen, 2013.06.18 Faculty of Technology, Postboks 203, Kjølnes ring
Lab 0 (Setting up your Development Environment) Week 1
ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself
Developing NFC Applications on the Android Platform. The Definitive Resource
Developing NFC Applications on the Android Platform The Definitive Resource Part 1 By Kyle Lampert Introduction This guide will use examples from Mac OS X, but the steps are easily adaptable for modern
ADT Plugin for Eclipse
ADT Plugin for Eclipse Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications. ADT extends
Developing Android Applications Introduction to Software Engineering Fall 2015. Updated 7 October 2015
Developing Android Applications Introduction to Software Engineering Fall 2015 Updated 7 October 2015 Android Lab 1 Introduction to Android Class Assignment: Simple Android Calculator 2 Class Plan Introduction
Installing LearningBay Enterprise Part 2
Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01939-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated May, 2012 This document will describe how to download and install the Android SDK
23442 ECE 09402 7 Introduction to Android Mobile Programming 23442 ECE 09504 7 Special Topics: Android Mobile Programming
23442 ECE 09402 7 Introduction to Android Mobile Programming 23442 ECE 09504 7 Special Topics: Android Mobile Programming Mondays 5:00 PM to 7:45 PM SJTP, Room 137 Portions From Android Programming The
Login with Amazon Getting Started Guide for Android. Version 2.0
Getting Started Guide for Android Version 2.0 Login with Amazon: Getting Started Guide for Android Copyright 2016 Amazon.com, Inc., or its affiliates. All rights reserved. Amazon and the Amazon logo are
Using Eclipse to Run Java Programs
Using Eclipse to Run Java Programs Downloading and Installing Eclipse Here s how: 1. Visit www.eclipse.org. 2. On that Web site, follow the links for downloading Eclipse. Be sure to pick the version that
How to Create an Android Application using Eclipse on Windows 7
How to Create an Android Application using Eclipse on Windows 7 Kevin Gleason 11/11/11 This application note is design to teach the reader how to setup an Android Development Environment on a Windows 7
Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna
Programming with Android: SDK install and initial setup Luca Bedogni Marco Di Felice Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna SDK and initial setup: Outline Ø Today: How
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
Android App Development Lloyd Hasson 2015 CONTENTS. Web-Based Method: Codenvy. Sponsored by. Android App. Development
Android App Lloyd Hasson 2015 Web-Based Method: Codenvy This tutorial goes through the basics of Android app development, using web-based technology and basic coding as well as deploying the app to a virtual
Tutorial: Android Object API Application Development. Sybase Unwired Platform 2.2 SP02
Tutorial: Android Object API Application Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01734-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
Tutorial on Basic Android Setup
Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Windows Version Introduction In this tutorial, we will learn how to set up the Android software development environment
Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows
Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android
Epidefender Studio Installation notice
Institut de Médecine et de Physiologie Spatiales Epidefender Studio Installation notice MEDES Institut de Médecine et Physiologie Spatiales CHU Rangueil - 1 avenue du Professeur Jean Poulhès - 31403 Toulouse
Creating Forms With Adobe LiveCycle Designer 8.2
Creating Forms With Adobe LiveCycle Designer 8.2 Instructional Media Center HCC Version 2 Modified Date 1/20/10 Learning Objectives: At the end of this training session the student will be able to use
Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3
Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01927-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains
Android Development Setup [Revision Date: 02/16/11]
Android Development Setup [Revision Date: 02/16/11] 0. Java : Go to the URL below to access the Java SE Download page: http://www.oracle.com/technetwork/java/javase/downloads/index.html Select Java Platform,
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)
IOIO for Android Beginners Guide Introduction
IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to
Introduction to Android Development
2013 Introduction to Android Development Keshav Bahadoor An basic guide to setting up and building native Android applications Science Technology Workshop & Exposition University of Nigeria, Nsukka Keshav
Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02
Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01927-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains
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
How to install and use the File Sharing Outlook Plugin
How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.
CSA Software Listing 2016-2017. Table of Contents. Both Windows and Mac platforms are supported.
CSA Software Listing 2016-2017 Both Windows and Mac platforms are supported. Table of Contents Student Access and Permissions... 2 Web Browsers... 2 Mozilla Firefox... 2 Internet Explorer... 2 Google Chrome...
ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android
Why Android? ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android Dr Dimitris C. Dracopoulos A truly open, free development platform based on Linux and open source A component-based
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)
With a single download, the ADT Bundle includes everything you need to begin developing apps:
Get the Android SDK The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android. The ADT bundle includes the essential Android SDK components
TM Online Storage: StorageSync
TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please
Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02
Tutorial: Mobile Business Object Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01208-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
This document also includes steps on how to login into HUDMobile with a grid card and launch published applications.
Office of the Chief Information Officer Information Technology Division COMPUTER SELF-HELP DESK - TRAINING TIPS AND TRICKS HUDMOBILE ON HOME MACS This document is a step-by-step instruction to check or
Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8
CONTENTS SECTION 1 Check current version of Remote Desktop Connection for Mac.. Page 2 SECTION 2 Remove Old Version Remote Desktop Connection..Page 8 SECTION 3 Download and Install Remote Desktop Connection
CheckBook Pro 2 Help
Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 Optional password protection 14 We're not done yet! 15 AutoCompletion
Grapevine Mail User Guide
Grapevine Mail User Guide Table of Contents Accessing Grapevine Mail...2 How to access the Mail portal... 2 How to login... 2 Grapevine Mail user guide... 5 Copying your contacts to the new Grapevine Mail
Fahim Uddin http://fahim.cooperativecorner.com [email protected]. 1. Java SDK
PREPARING YOUR MACHINES WITH NECESSARY TOOLS FOR ANDROID DEVELOPMENT SEPTEMBER, 2012 Fahim Uddin http://fahim.cooperativecorner.com [email protected] Android SDK makes use of the Java SE
Optional Mainserver Setup Instructions for OS X Support
Optional Mainserver Setup Instructions for OS X Support Essentials Friday, November 2, 2012 Summary Some of the exercises in Apple Pro Training Series: OS X Support Essentials require access to a specially
The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended.
Installing the SDK This page describes how to install the Android SDK and set up your development environment for the first time. If you encounter any problems during installation, see the Troubleshooting
Office of Information Technology Connecting to Microsoft Exchange User Guide
OVERVIEW The Office of Information Technology is migrating its messaging infrastructure from Microsoft Exchange 2003 to Microsoft Exchange 2010. Moving to the latest technology will provide many enhancements
Installing the Android SDK
Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today
Using the Jive for ios App
Using the Jive for ios App TOC 2 Contents App Overview...3 System Requirements... 4 Release Notes...5 Which Version Am I Using?... 6 Connecting to Your Community... 11 Getting Started...12 Using Your Inbox...13
for Android Desktop and Conduit for Mac Quick Start Guide
for Android Desktop and Conduit for Mac Quick Start Guide HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this
Developing with Android Studio
CHAPTER 6 Developing with Android Studio Donn Felker Android Studio (shown in Figure 6-1) is the IDE for Android that was announced in May 2013 at the Google I/O developers event, and is intended as an
Android Mobile App Building Tutorial
Android Mobile App Building Tutorial Seidenberg-CSIS, Pace University This mobile app building tutorial is for high school and college students to participate in Mobile App Development Contest Workshop.
WINDOWS LIVE MAIL FEATURES
WINDOWS LIVE MAIL Windows Live Mail brings a free, full-featured email program to Windows XP, Windows Vista and Windows 7 users. It combines in one package the best that both Outlook Express and Windows
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: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients.
Android: Setup Hello, World: Android Edition due by noon ET on Wed 2/22 Ingredients. Android Development Tools Plugin for Eclipse Android Software Development Kit Eclipse Java Help. Help is available throughout
About this Release. Introduction. Prerequisites. Installation. Using the Web SDK Packager
About this Release This is a 1.2.1 release of the Sony Ericsson WebSDK Packager. Limitations are listed in Release Notes. Introduction Sony Ericsson s WebSDK Packager is based on the open source PhoneGap
How To Develop An Android App On An Android Device
Lesson 2 Android Development Tools = Eclipse + ADT + SDK Victor Matos Cleveland State University Portions of this page are reproduced from work created and shared by Googleand used according to terms described
Welcome to Bridgit @ CSU The Software Used To Data Conference.
Welcome to Bridgit @ CSU The Software Used To Data Conference. Overview SMART Bridgit software is a client/server application that lets you share programs and information with anyone, anywhere in the world.
DOF e-repository User Guide
DOF e-repository User Guide Using Citrix Receiver to Access DOF e-repository (Electronic Document Repository) To ensure secure and reliable access to the DOF e-repository you will need to use Citrix Receiver
Using Spectra on Mac
Using Spectra on Mac Last updated 03/22/2013 Please note: Instructions related to all third party software contained in this document are subject to change without notice. Please refer to the appropriate
Developing In Eclipse, with ADT
Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)
Intro to Web Development
Intro to Web Development For this assignment you will be using the KompoZer program because it free to use, and we wanted to keep the costs of this course down. You may be familiar with other webpage editing
Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04
Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365
This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University
Creating Digital Signatures
About Security You can secure a PDF using any of the following security methods: Add passwords and set security options to restrict opening, editing, and printing PDFs. Encrypt a document so that only
USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy
USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting
Installation Windows Next Linux Mac Navigator Navigator Help Show Navigator at Startup PR Wizard New PR Campaign PR Manager
bluevizia PR Manager is a modern, easy-to-use software tool for the successful development and management of the internal and external communications of the company. Installation Windows Double-click with
Chapter 14: Links. Types of Links. 1 Chapter 14: Links
1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and
Raptor K30 Gaming Software
Raptor K30 Gaming Software User Guide Revision 1.0 Copyright 2013, Corsair Components, Inc. All Rights Reserved. Corsair, the Sails logo, and Vengeance are registered trademarks of Corsair in the United
Running a Program on an AVD
Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run
XML Editing with Oxygen. Getting started, tips and tricks
XML Editing with Oxygen Getting started, tips and tricks Oxygen is the industry-standard application for XML editing. There are other XML editors available (http://www.xml.com/pub/pt/3 currently lists
for Android Windows Desktop and Conduit Quick Start Guide
for Android Windows Desktop and Conduit Quick Start Guide HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this
Mobile Application Development
Mobile Application Development (Android & ios) Tutorial Emirates Skills 2015 3/26/2015 1 What is Android? An open source Linux-based operating system intended for mobile computing platforms Includes a
How to Add Social Media Icons to Your Website
How to Add Social Media Icons to Your Website Introduction For this tutorial, I am assuming that you have a self-hosted WordPress website/blog. I will be using the Twenty Eleven Theme which ships with
Software Application Tutorial
Software Application Tutorial Copyright 2005, Software Application Training Unit, West Chester University. No Portion of this document may be reproduced without the written permission of the authors. For
Student Getting Started Guide
with with Student Getting Started Guide TABLE OF CONTENTS Table of Contents FIRST STEPS TO ENSURE SUCCESS... 3 Ensure System Requirements are met on Your Computer... 3 Find Out Which Operating System Is
Presenting Android Development in the CS Curriculum
Presenting Android Development in the CS Curriculum Mao Zheng Hao Fan Department of Computer Science International School of Software University of Wisconsin-La Crosse Wuhan University La Crosse WI, 54601
Managing Files. On a PC, after you find your file, right click it and selet Rename from the pop-up menu.
Managing Files File Types, Renaming Files The software you are using will automatically save your file as the type that applies to your current application. For Microsoft Word documents, for example, will
Allworx OfficeSafe Operations Guide Release 6.0
Allworx OfficeSafe Operations Guide Release 6.0 No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy,
Android Setup Phase 2
Android Setup Phase 2 Instructor: Trish Cornez CS260 Fall 2012 Phase 2: Install the Android Components In this phase you will add the Android components to the existing Java setup. This phase must be completed
Google Drive: Access and organize your files
Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or
Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.
Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use
Using Outlook WebAccess
Using Outlook WebAccess Outlook Toolbars - Terminology Update all folders New Move/Copy Reply Forward Check for New Messages Help Show/Hide Folders Delete Reply to All Show/Hide Reading Pain Search Address
