X

Download Android PowerPoint Presentation

SlidesFinder-Advertising-Design.jpg

Login   OR  Register
X


Iframe embed code :



Presentation url :

Home / Science & Technology / Science & Technology Presentations / Android PowerPoint Presentation

Android PowerPoint Presentation

Ppt Presentation Embed Code   Zoom Ppt Presentation

PowerPoint is the world's most popular presentation software which can let you create professional Android powerpoint presentation easily and in no time. This helps you give your presentation on Android in a conference, a school lecture, a business proposal, in a webinar and business and professional representations.

The uploader spent his/her valuable time to create this Android powerpoint presentation slides, to share his/her useful content with the world. This ppt presentation uploaded by slidesfinder in Science & Technology ppt presentation category is available for free download,and can be used according to your industries like finance, marketing, education, health and many more.

About This Presentation

Slide 1 - Android Aims to bring Internet-style innovation and openness to mobile phones
Slide 2 - You might help me to figure it out… What is the limitation of Windows Mobile? What are the advantages of Java & Linux? What you think when you purchase any mobile phone?
Slide 3 - What it is??? Software Environment for Mobile Devices contains Operating System, middleware and bunch of applications First complete, open and free mobile platform Based on Linux Kernel Uses Java as a development Language…. By Google later Handed to Open Handset Alliances Google doesn’t left anything in technology world without it magic touch……
Slide 4 - Why Special ??? Application framework enabling reuse and replacement of components Dalvik Virtual machine optimized for mobile devices Integrated browser based on the open source WebKit engine Optimized graphics powered by a custom 2D graphics library; 3D graphics based on the OpenGL ES 1.0 specification SQLite for structured data storage Media support for common audio, video, and some image formats (MPEG4, H.264, MP3, AAC, AMR, JPG, PNG, GIF) GSM Telephony ,Bluetooth, EDGE, 3G, and WiFi, GPS,Compass,Accelerometer (hardware dependent) Rich development environment including a device emulator, tools for debugging, memory and performance profiling, and a plugin for the Eclipse IDE
Slide 5 - This for Users……Lots of cool stuff from Google Multiple applications, running all at once, and switch seamlessly between them. Notifications alert you when applications running in the background require your attention. Demo :-http://www.youtube.com/watch?v=q1m4j676BCc The native WebKit browser lets users experience the "full web" and easily move between browsing and other tasks on their phone. Demo :- http://www.youtube.com/watch?v=8lZkwaNx8_Y Personalize the home screen to suit your needs and tastes. Demo:- http://www.youtube.com/watch?v=LQH0ICx7E9U Application without Borders Any app on the mobile device can be replaced or extended Fast scrolling……. Browser Trick……Easy Copy & Paste………Contact & Calendar……………long & long list
Slide 6 - This for Developers….
Slide 7 - Open Market Developers will be able to make their content available on an open service hosted by Google that features a feedback and rating system similar to YouTube.
Slide 8 - Write the steps for Text Messaging Program Consider yourself as a developer not as a user…. What are the functions/Events you need? Who start/stop/switch? What is Scenario? From where it comes and where it goes?
Slide 9 - Anatomy of Android Application – Text Messaging Example Activity – Single class, Single Screen composed of views, respond to user input Intent –Navigation from Screen to Screen Broadcast Intent Receiver – Notification, request Service – long-lived , running in background Content Provider – Standard set of methods to store and retrive data AndroidManifest.xml – required file for every application
Slide 10 - First Simple Application package com.android.hello; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class HelloAndroid extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("Hello, Android"); setContentView(tv); } }
Slide 11 - Confusion about how to start ??? Here is the answers…. Tools - http://code.google.com/android/intro/tools.html APIs – http://code.google.com/android/reference/packages.html Project http://code.google.com/android/adc_gallery/ http://www.android.com/market/
Slide 12 - At Last………..Criticism Google announce it is open source but license says……. 3.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law……………………………….. 3.4 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license ……….. Google releasing code under Apache 2 licenses rather than GPL2………Why ????? Android only reuses the Java language syntax, but does not provide the full-class libraries and APIs bundled with Java SE or ME
Slide 13 - Thanks to References…… www.openhandsetalliance.com www.android.com www.code.google.com/android www.cnet.com Lots of Blogs…
Slide 14 - ??? -Thanks