Market Share. Market Share Market Share Android Dev Basics Android apps are developed in Java and XML. The hardest part of Android dev is coming up.

Slides:



Advertisements
Similar presentations
1 Mobile Computing Mobile First (formerly Worklight) Copyright 2015 by Janson Industries.
Advertisements

Cosc 4730 Installing IDEs And a note on carriers..
Android: Hello World Frank Xu Gannon University. Steps Configuration ▫Android SDK ▫Android Development Tools (ADT)  Eclipse plug-in ▫Android SDK and.
Google Android as a mobile development platform T Internet Technologies for Mobile Computing Olli Mäkinen.
By: James Ondecko  What is Android?  Helpful backgrounds for Android development  Tools & Installs  Android Virtual Devices  Helpful references.
STORE ITEM FINDER FOR ANDROID Brian McClure Aarron Hulswitt Kevrin Blood Dr. Ledgard – Faculty Advisor.
Android 1: Background Kirk Scott Buzzwords 1.2 Development Software 1.3 Getting Started 1.4 Preliminaries to Trying to Make It Work the First Time.
2. Setting Up Your Android Development Environment.
Android Application Development with Java UPenn CS4HS 2011 Chris Murphy
What is Android? Android is among the most popular operating systems aimed towards mobile devices such as smartphones, and is currently the most widely.
UFCFX5-15-3Mobile Device Development Android Development Environments and Windows.
Virtual Reality Course Slide  NTU Mobile HCI Lab, Mike Chen   Android Developers 
MOBILE APP DEVELOPMENT Presented by Md. Zakaria Chowdhury CEO, Webcraft Bangladesh Director, Sylhet IT Academy.
INTERNATIONAL SUMMER ACADEMIC COURSE UNIVESITY OF NIS ISAC – Android programming.
SEEM4570: XAMPP, Eclipse, Summary of Html Kangfei Zhao Room 711,ERB
Emerging Platform#4: Android Bina Ramamurthy.  Android is an Operating system.  Android is an emerging platform for mobile devices.  Initially developed.
Android Application Development 2013 PClassic Chris Murphy 1.
Android Introduction Platform Overview.
Sayed Ahmed BSc. Eng. In Computer Sc. and Eng. (BUET), Bangladesh MSc., Computer Science, Canada President/Chief Architect/Lead Developer Justetc (Just.
Mobile Programming Lecture 1 Getting Started. Today's Agenda About the Eclipse IDE Hello, World! Project Android Project Structure Intro to Activities,
Android 2: Introduction to the Technology Kirk Scott 1.
Wireless Mobility with Android 1 Presented by: Ung Yean MS. Computer Science American University, Washington DC, USA.
Subtitle touch | Title of presentation | Date DD/MM/YYYY Touch Cloud Android SDK Ghady Rayess – Jan 19 th, 2013.
Android Programming By Mohsen Biglari Android Programming, Part1: Introduction 1 Part1: Introduction By Mohsen Biglari.
Android Info mostly based on Pro Android 3.  User Applications  Java Libraries – most of Java standard edition ◦ Activities/Services ◦ UI/Graphics/View.
BY, CHRISTOPHER CHIOSA Android Applications. Android App Development There are over 80,000 apps on the Google Play Store. The global app economy reached.
Introduction to Android Android How to Program © by Pearson Education, Inc. All Rights Reserved.
Sayed Ahmed Computer Engineering (BUET), Bangladesh MSc., Computer Science, Canada President/Chief Architect/Lead Developer Justetc (Just et cetera) Technologies.
Ali Shahrokni Application Components Activities Services Content providers Broadcast receivers.
Presentation Seminar on “IMAGE SLIDER –AN ANDROID APPLICATION”
DUE Hello World on the Android Platform.
#gsa2012 Android Basics By: Amr Mohsen
Android for Java Developers Denver Java Users Group Jan 11, Mike
Eclipse Tutorial Barrett Summer Scholars 2011 Sustainable Engineering: Learning to Engineer Truly Green Products.
Mobile Device Programming
Creating “Apps” with your students. iPod/iPhone Pro Very clean interface Touch implementation fairly easy to implement Recognized Con Cost  Hardware.
Android architecture & setting up. Android operating system comprises of different software components arranges in stack. Different components of android.
Android Development Environment Environment/tools Windows Eclipse IDE for Java Developers (v3.5 Galileo) Java Platform (JDK 6 Update 18) Android.
Educational & entertraiment applications on Android platform «Piano» and «Abetare» Anisa Shehu Prof. Asoc. Elinda Meçe 14 th Workshop “Software Engineering.
Steven Carvellas Anirban Ghosh Pramod Vedantham Rahul Sheth Varun Sarwade.
CSNB544 Mobile Application Development
Presented by Christopher Wilkins Jeff Titus Stephan Krach Pablo Bajo.
Android. What is Android? A mobile device operating system. Seen primary in tablets and Cellphones. Based on a Linux kernel. Applications are Java Based.
Introduction to Android Programming. Essentials Eclipse and Java SDK – downloads/index.html
Installation of Visual Studio Android emulator and Android Studio
Mobile Application Development Kevin Payne & Andi Saputra JWH Group.
PhoneSmall Tablet 2-in-1s (Tablet or Laptop) Desktops & All-in-Ones PhabletLarge Tablet Classic Laptop XboxIoTSurface HubHolographic Windows 10.
Android apps development - Eclipse, Android SDK, and ADT plugin Introduction of.
The Basics of Android App Development Sankarshan Mridha Satadal Sengupta.
Mobile Device Development
Course Individuals Lecturer Dr. Eng. Amr T. Abdel-Hamid
ANDROID APP FOR HIVETRACKS.COM SERVICE
Browsers and Web Platforms
Wireless Mobility with Android
Chapter 2: Operating-System Structures
Android Studio, Android System Basics and Git
Computing.
Android.
APK Downloader
An-Najah National University Computer Engineering Department Software Graduation Project (66581) Supervised By: Dr. Luai M. Malhis Examiners.
Development-Introduction
Mobile App Development
Korea Software HRD Center
Mobile Programming Dr. Mohsin Ali Memon.
Dot Net Application PROF. S. LAKSHMANAN, DEPT. OF B. VOC. (SD & SA),
Android Development Introduction to Android Development 2011/01/16
Download the My Learning App
Presentation transcript:

Market Share

Market Share

Android Dev Basics Android apps are developed in Java and XML. The hardest part of Android dev is coming up with the idea!

Android Dev Basics Developed with Eclipse using Java SE Dev kit(JDK), Android SDK, and Android Development tools (ADT). To test your application you can use either an Android virtual device (AVD) or any Android device.

Activities The basis of all Android Apps Each page is a new activity Links to the GUI Activities life cycle

Fragments Similar functionality to activities Must be nested within an activity Introduced in version 3.0 More useful on tablets Good for when you want to display two different activities side by side.

GUI Defined in XML Three ways to construct the GUI In code At run time Using a graphical interface Several different common controls

GUI The programmer must account for different sizes and densities of Android devices. There is the ability to have different styles and themes

Data Several ways to store data SQLite is the primary way to store data in Android JSON is commonly used as well