Android Studio Hello World

Slides:



Advertisements
Similar presentations
Google Picasa Simple Sharing & Photo Editing May 2011Moore Memorial Library Public Computer Center | Greene, NY1.
Advertisements

Android architecture overview 1 CS 150. Android  A software stack for mobile devices developed and managed by Open Handset Alliance  Free software under.
Installing Citrix Receiver
Hello world Follow steps under the sections “Create an AVD” and “Create a New Android Project” at
1 Mobile Computing Mobile First (formerly Worklight) Copyright 2015 by Janson Industries.
Downloading and Installing AutoCAD Architecture 2015 This is a 4 step process 1.Register with the Autodesk Student Community 2.Downloading the software.
2. Run. Hours button 1. Run. Hours screen Running hours.
New Offline Password After initial login to the system, the offline version in located by clicking on the red Emergency button.
SET UP COMPUTER ** PLEASE BE AWARE SCREENSHOTS MAY NOT MATCH **
Android Development (Basics)
Software Development. Chapter 3 – Your first Windows 8 app.
Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
Android Application Development 2013 PClassic Chris Murphy 1.
Mastering Your Word Processing Skills
Better reference the original webpage :
Microsoft Visual Basic 2012 CHAPTER TWELVE (ENRICHMENT CHAPTER) Windows Store Apps.
Programming Your Android App Gourav Khadge
 Understanding an activity  Starting an activity  Passing information between activities  Understanding intents  Understanding the activity lifecycle.
Power Point Basics Tutors 4 Computers Overview Slides can be created in three ways Using Auto-Content Wizard Layout/design templates From Scratch Selecting.
Duplex printer ‘queues’ allow the user to print on both sides of the paper. The cost of duplex printing is the same as printing two individual pages. This.
Inserting Pictures and Symbols in Word documents There are many ways to insert pictures – these are the most common methods Copy and Paste Copy and paste.
Intro to AppInventor Dr. Dante Ciolfi (chawl fee).
How to make an interactive PowerPoint in which you will….. Add hyperlinks to move to different parts of the presentationAdd hyperlinks to move to different.
Hello world Follow steps under the sections “Create an AVD” and “Create a New Android Project” at
PARSING FACEBOOK DATA FOR ANDROID 1. Step by Step  Import Android SDK  Get the hash key  Create a new app  Create a new project in Eclipse 
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
Basic Android Tutorial USF’s Association for Computing Machinery.
© 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.
Mapwing Tutorial By: Jake Quilliams 11/7/ First, Go to this website 2. Start your Virtual Tour here by choosing CREAT A.
Mappler Mobile – iPhone Prepared by VERTICES
Android Hello World 1. Click on Start and type eclipse into the textbox 2.
Creating an Example Android App in Android Studio Activity lifecycle & UI Resources.
1. Click the arrow beside the SOLIDWORKS symbol 2. Under this arrow click on the “File” button 3. Click on the “Open…” button 4. Find your folder wherever.
Downloading and Installing Autodesk Inventor Professional 2015 This is a 4 step process 1.Register with the Autodesk Student Community 2.Downloading the.
CamScanner Free for iPhone, Android, Windows Phone.
Using Pro-Engineer to Create 3 Dimensional Shapes Kevin Manner Kevin Manner Tim Reynolds Tim Reynolds Thuy Tran Thuy Tran Vuong Nguyen Vuong Nguyen.
First Venture into the Android World Chapter 1 Part 2.
How to create a PowerPoint By: Abby Haehn. How to Start Go to your Launchpad, located in your dock Click on the P You should get a format screen Choose.
An Inspiration Software Tutorial INDEX Changing a Symbol in Inspiration Adding a Symbol in Inspiration Moving a Symbol in inspiration Adding text under.
How to Add Animations and Narration to Your PowerPoint Presentation Ms. Chen North Shore High School AP Biology.
© 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.
Appium with Android Configuration.  Download Appium server:  Choose the latest version of appium.
Intoduction to Andriod studio Environment With a hello world program.
Customizing Menus and Toolbars CHAPTER 12 Customizing Menus and Toolbars.
5/14/2003Sprint TekNet IP Train the Trainer1 Open TekNet Software If working at a client station, enter the IP address of the server and mark page as a.
CWA 3105 Presents At&t Connect for Windows pc This will be a quick set up guide for our new virtual meeting program We are the ELITE to have this trial.
INTRO to PIXLR.com.
Lab7 – Advanced.
Installing Citrix Receiver
About SharePoint Server 2007 My Sites
Chapter 2 – Introduction to the Visual Studio .NET IDE
JavaScript “Hello World” in Microsoft Visual Studio 2012
~ Student Aurasma Guide ~
Creating Power Point Presentations
Android SDK & App Development
Install and Run the Kronos Mobile App
Module 6: Creating Web Pages and Working with Channels
CS323 Android Getting Started
Android ListView Demo.
Android Studio Constraint Layout
Inserting Pictures and Symbols in Word documents
Android Developer Fundamentals V2 Lesson 1
How to Run a Java Program
Android Programming Tutorial
How to PostPower Point Presentations
Clemson For iOS Devices and Wi-Fi Setup
How to create an Itunes account to your computer
transparent overlapping overlapping Overlapping, transparent text
MULTIPLE CHOICE A B C D.
2.2 – Activity Packages Create a new Process in UiPath Studio
Presentation transcript:

Android Studio Hello World

Start/All Program/Android Studio/Android Studio

I do not have a previous version … OK

Lack of permissions Android Studio likes to update often. You probably do not have the necessary permissions on the lab computers so avoid clicking on update.

Next. Maybe only the first user (me for the lab computers) sees this.

Next (again)

Finish

Finish (again)

Start a new Android Studio project

Name the application and click Next

Select a minimum SDK. Next.

Next

Choose an empty activity. Next

Finish

Close tip of the day

Click the Run App button (green arrow)

If there is a virtual device available choose it If there is a virtual device available choose it. If not, click on create New Virtual Device

Next

Select a system image

Agree to license. Next.

Finish

Select image. Next.

Finish

OK

Install and continue

Finish

After closing the emulator and running again

Go to activity_main.xml (see res/layout)

Right click on “Hello world” TextView and select Cut.

Click ON the Auto Connect (U) button

Drag a button from the palette to the layout

Change the button’s id and text

Drag from the little circle on top to the top of the container and from the circle of the right and left edge to the side of the container

Result in Text View. Constraints are important in the ConstraintLayout

Drag a TextView onto the Layout

Change the TextView’s id and text

Apply the constraints – this time connect the top of the TextView to the bottom of the Button

Result

Additional property it asked for to eliminate red

Return to MainActivity – begin to instantiate a button object

Put mouse over Button (which was red) and click Alt-Enter Put mouse over Button (which was red) and click Alt-Enter. Adds the import android.widget.Button

Start adding the button’s setOnClickListener method

Add required onClick method

Instantiate TextView object and use its setText method

Run Problem you may find: if you did not take care of the constraints, the TextView and Button may be on top of one another.