ANDROID SYLLABUS. Advanced Android

Similar documents
Android App Development

Syllabus- Java + Android. Java Fundamentals

Software Development & Education Center ANDROID. Application Development

1. Implementation of Inheritance with objects, methods. 2. Implementing Interface in a simple java class. 3. To create java class with polymorphism

ORACLE UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

ATC Android Application Development

Required Core Java for Android application development

Android Application Development Course Code: AND-401 Version 7 Duration: 05 days

ANDROID COURSE BROCHURE

ANDROID TRAINING PROGRAM COURSE CONTENT

Android Application Development using Kotlin

Android Application Development

Android Syllabus. Android. Android Overview and History How it all get started. Why Android is different.

Android Online Training

Java Training Center - Android Application Development

ANDROID DEVELOPMENT. Course Details

Android Essentials with Java

Android Application Development Course 28 Contact Hours

Android Programming (5 Days)

IGEEKS TECHNOLOGIES. Software Training Division. Academic Live Projects For BE,ME,MCA,BCA and PHD Students

MC Android Programming

Android App Development

Mobile Application Development

Course Syllabus. Course Title. Who should attend? Course Description. Android ( Level 1 )

android application development CONTENTS 1.1 INTRODUCTION TO O ANDROID OPERATING SYSTEM... TURES Understanding the Android Software Stack...

Project Covered During Training: Real Time Project Training

CHAPTER 1: HELLO, ANDROID 1

Android Training Overview (For Demo Classes Call Us )

Developer s overview of the Android platform

CORE JAVA& ANDROID SYLLABUS

Android Overview. Most of the material in this section comes from

Android Apps Development

Android" Application Development SAMS. Sams Teach Yourself. Shane Conder. Lauren Darcey. Second Edition

COURSE SYLLABUS ANDROID. Industrial Training (4 MONTHS) PH : , Vazhoor Road Changanacherry-01.

Android App Development for Beginners

Android. Lesson 1. Introduction. Android Developer Fundamentals. Android Developer Fundamentals. to Android 1

Android Programming - Jelly Bean

Course Learning Outcomes (CLO): Student Outcomes (SO):

Minds-on: Android. Session 1

ITG Software Engineering

ANDROID APPLICATION DEVELOPMENT PROSPECTUS ADAAD UNIVERSITY OF SKILLS

In this Class Mark shows you how to put applications into packages and how to run them through the command line.

Topics Covered in the Android Apps Development Training

Mobile Application Development

SEVEN ADVANCED ACADEMY

Introduction To Android

ANDROID APPLICATION DEVELOPMENT COURSE Training Program

Introduction to Android

Android Programming in Bluetooth Cochlea Group

GUJARAT TECHNOLOGICAL UNIVERSITY

Mobile development initiation

Android. Training.

Android App Development Workshop

Android. (XKE Mars 2009) Erwan Alliaume.

Introduction to Mobile Application and Development

1. What are the key components of Android Architecture? 2. What are the advantages of having an emulator within the Android environment?

AND-401 Android Certification. The exam is excluded, but we cover and support you in full if you want to sit for the international exam.

Lecture 1 Introduction to Android. App Development for Mobile Devices. App Development for Mobile Devices. Announcement.

Android App Development. Ahmad Tayeb

Android Application Development

Android Basics Nanodegree Syllabus

SHWETANK KUMAR GUPTA Only For Education Purpose

An Introduction to Android. Jason Chen Developer Advocate Google I/O 2008

Android Basics Nanodegree Syllabus

ANDROID. Curriculum LOCATION CONTACT US SCHEDULE. TurnToTech 40 Rector St. 10th Floor New York, NY

Introduction to Android development

Pro Android 2. Sayed Y. Hashimi Satya Komatineni Dave Mac Lean. Apress

Android App Development. Muhammad Sharjeel COMSATS Institute of Information Technology, Lahore

Programming in Android. Nick Bopp

XAMARIN Application Development - Workshop

ANDROID NATIVE APP: INTRODUCTION TO ANDROID. Roberto Beraldi

Beginning Android 4 Application Development

Android Development Tutorial. Yi Huang

Qt for Device Creation

Android Overview. Francesco Mercaldo, PhD

Diploma in Android Programming (DAP)

Chapter 1 Hello, Android

CS 403X Mobile and Ubiquitous Computing Lecture 5: Web Services, Broadcast Receivers, Tracking Location, SQLite Databases Emmanuel Agu

LTBP INDUSTRIAL TRAINING INSTITUTE

Kick Start your Embedded Development with Qt

CS 4518 Mobile and Ubiquitous Computing Lecture 2: Introduction to Android. Emmanuel Agu

Programming with Android: System Architecture. Dipartimento di Scienze dell Informazione Università di Bologna

Introduction to Android

Android Development Tools = Eclipse + ADT + SDK

Mobile Application Development - Android

Mobile and Wireless Systems Programming

Essentials of Developing Windows Store Apps Using C#

Lecture 1 - Introduction to Android

CS 528 Mobile and Ubiquitous Computing Lecture 1b: Introduction to Android. Emmanuel Agu

Androidfp_printOnly.book Page vii Tuesday, October 4, :15 AM. Contents. Before You Begin

Produced by. Mobile Application Development. David Drohan Department of Computing & Mathematics Waterford Institute of Technology

Hello World. Lesson 1. Create your first Android. Android Developer Fundamentals. Android Developer Fundamentals

Android - open source mobile platform

SD Module- Android Programming

MARS AREA SCHOOL DISTRICT Curriculum TECHNOLOGY EDUCATION

Android Studio is google's official IDE(Integrated Development Environment) for Android Developers.

Android Software Development Kit (Part I)

Answers to Exercises

Introduction to Android Application Development. Mike Kvintus Principal Engineer JDSU

Android System Architecture. Android Application Fundamentals. Applications in Android. Apps in the Android OS. Program Model 8/31/2015

Transcription:

Advanced Android 1) Introduction To Mobile Apps I. Why we Need Mobile Apps II. Different Kinds of Mobile Apps III. Briefly about Android 2) Introduction Android I. History Behind Android Development II. What is Android? III. Pre-requisites to learn Android IV. Brief Discussion on Java Programming 3) Android Architecture I. Overview of Android Stack II. Android Features III. Introduction to OS layers 4) Deep Overview in Android Stack I. Linux Kernel II. Libraries III. Android Runtime IV. Application Framework V. Dalvik VM 5) Installing Android Machine I. Configuring Android Stack II. Setting up Android Studio III. Working with Android Studio IV. Using Older Android Tools

6) Creating First Android Application I. Creating Android Project II. Debugging Application III. Setting up environment IV. AVD Creation V. Executing Project on Android Screen 7) Android Components I. Activities II. Services III. Broadcast Receivers IV. Content Providers 8) Hello World App I. Creating your first project II. The manifest file III. Layout resource IV. Running your app on Emulator 9) Building UI with Activities I. Activities II. Views, layouts and Common UI components III. Creating UI through code and XML IV. Activity lifecycle V. Intents VI. Communicating data among Activities 10) Advanced UI I. Selection components ( GridView, ListView, Spinner ) II. Adapters, Custom Adapters III. Complex UI components IV. Building UI for performance V. Menus VI. Creating custom and compound Views

11) Notifications I. Toast, Custom Toast II. Dialogs III. Status bar Notifications 12) Multithreading I. Using Java Mutithreading classes II. AsyncTask III. Handler IV. Post 13) Styles and Themes I. Creating and Applying simple Style II. Inheriting built-in Style and User defined style III. Using Styles as themes 14) Resources and Assets I. Android Resource II. Using resources in XML and code III. Localization IV. Handling Runtime configuration changes 15) Intent, Intent Filters and Broadcast Receivers I. Role of filters II. Intent-matching rules III. Filters in your manifest IV. Filters in dynamic Broadcast Receivers V. Creating Broadcast receiver VI. Understanding Broadcast action, category and data VII. Registering Broadcast receiver through code and through XML VIII. Sending Broadcast

16) Data Storage I. Shared Preferences II. Android File System III. Internal storage IV. External storage V. SQLite a. Introducing SQLite b. SQLiteOpenHelper and creating a database c. Opening and closing a database d. Working with cursors Inserts, updates, and deletes VI. Network 17) Content Providers I. Accessing built in content providers II. Content provider III. Searching for content IV. Adding, changing, and removing content V. Creating content provider VI. Working with content files 18) Services I. Overview of services in Android II. Implementing a Service III. Service lifecycle IV. Inter Process Communication 19) Multimedia in Android I. Multimedia Supported audio formats II. Simple media playback III. Supported video formats IV. Simple video playback

20) Location Based Services and Google Maps I. Using Location Based Services II. Finding current location and listening for changes in location III. Working with Google Maps i. Showing Google map in an Activity ii. Map Overlays iii. Itemized overlays iv. Geocoder v. Displaying route on map 21) Web Services and WebView I. Consuming web services II. Receiving HTTP Response (XML, JSON ) III. Parsing JSON and XML IV. Using WebView 22) Sensors I. How Sensors work II. Using Orientation and Accelerometer sensors III. Best practices for performance 23) WiFi I. Monitoring and managing Internet connectivity II. Managing active connections III. Managing WiFi networks 24) Telephony Services I. Making calls II. Monitoring data connectivity and activity III. Accessing phone properties and status IV. Controlling the phone V. Sending messages

25) Camera I. Taking pictures II. Media Recorder III. Rendering previews 26) Bluetooth I. Controlling local Bluetooth device II. Discovering and bonding with Bluetooth devices III. Managing Bluetooth connections IV. Communicating with Bluetooth 27) Android Web Services I. What is web service II. Web service III. Android Restful web service example with php IV. Storing data into external mysql database V. Verifying data in android with external mysql database 28) More I. Fragments II. Material Design III. Gradle IV. NEW TOPICS: Since each new version of Android has new features, we keep extra time for adding custom topics in every batch. You can request any Android Topic. 29) Android Application Deployment