SlideShare una empresa de Scribd logo
1 de 35
Developed By..

Shiladitya Basu
Chirag Das
Sumit Balmiki
Subhrojit Das
Sambho Ghosh

Under guidance of Prof. Subhasis Mitra
Android Introduction..
• Android is an operating system based on the Linux kernel, and designed
primarily for touch screen mobile devices such as Smartphone’s and tablet
computers. Initially developed by Android, Inc., which Google backed
financially and later bought in 2005, Android was unveiled in 2007 along
with the founding of the Open Handset Alliance: a consortium of
hardware, software, and telecommunication companies devoted to
advancing open standards for mobile devices . The first Android-powered
phone was sold in October 2008.
• The user interface of Android is based on direct manipulation, using touch
inputs that loosely correspond to real-world actions, like swiping, tapping,
pinching and reverse pinching to manipulate on-screen objects.
• Android allows users to customize their home screens with shortcuts to
applications and widgets, which allow users to display live content, such as
emails and weather information, directly on the home screen.
Applications can further send notifications to the user to inform them of
relevant information, such as new emails and text messages.
• Android is open source and Google releases the code under the Apache
License. This open-source code and permissive licensing allows the
software to be freely modified and distributed by device
manufacturers, wireless carriers and enthusiast developers.
• Android has a large community of developers writing applications ("apps")
that extend the functionality of devices, written primarily in the Java
programming language
• Android is the world's most widely used smart phone platform,[overtaking
Symbian in the fourth quarter of 2010. Android is popular with technology
companies who require a ready-made, low-cost, customizable and
lightweight operating system for high tech devices.
• Despite being primarily designed for phones and tablets, it also has been
used in televisions, games consoles, digital cameras and other electronics.
Android's open nature has encouraged a large community of developers
and enthusiasts to use the open-source code as a foundation for
community-driven projects, which add new features for advanced users or
bring Android to devices which were officially released running other
operating systems.
Interface of
Android
• Android's user interface is based on direct manipulation , using touch
inputs that loosely correspond to real-world actions, like
swiping, tapping, pinching and reverse pinching to manipulate on-screen
objects. The response to user input is designed to be immediate and
provides a fluid touch interface, often using the vibration capabilities of
the device to provide Haptic Feedback to the user.
• Internal hardware such as accelerometers, gyroscopes and proximity
sensors are used by some applications to respond to additional user
actions, for example adjusting the screen from portrait to landscape
depending on how the device is oriented, or allowing the user to steer a
vehicle in a racing game by rotating the device, simulating control of a
steering wheel.
• Android home screens are typically made up of app icons and widgets;
app icons launch the associated app, whereas widgets display live, autoupdating content such as the weather forecast, the user's email inbox, or a
news ticker directly on the home screen.
• A home screen may be made up of several pages that the user can swipe
back and forth between, though Android's home screen interface is
heavily customizable, allowing the user to adjust the look and feel of the
device to their tastes.
• Third-party apps available on Google Play and other app stores can
extensively re-theme the home screen.
• Present along the top of the screen is a status bar, showing information
about the device and its connectivity. This status bar can be "pulled" down
to reveal a notification screen where apps display important information
or updates, such as a newly received email or SMS text, in a way that does
not immediately interrupt or inconvenience the user.
Memory Management of
Android OS
• Since Android devices are usually battery-powered, Android is designed to
manage memory (RAM) to keep power consumption at a minimum.
• When an Android app is no longer in use, the system will automatically
suspend it in memory – while the app is still technically "open,"
suspended apps consume no resources (e.g. battery power or processing
power)
• Android manages the apps stored in memory automatically: when
memory is low, the system will begin killing apps and processes that have
been inactive for a while, in reverse order since they were last used (i.e.
oldest first).
• This process is designed to be invisible to the user, such that users do not
need to manage memory or the killing of apps themselves
Android Versions
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•

Android 1.0 (API level 1)
• Android 4.3 Jelly Bean (API level
Android 1.1 (API level 2)
18)
Android 1.5 Cupcake (API level 3)
• Android 4.4 KitKat (API level 19)
Android 1.6 Donut (API level 4)
Android 2.0 Eclair (API level 5)
Android 2.1 Eclair (API level 7)
Android 2.2–2.2.3 Froyo (API level 8)
Android 2.3–2.3.2 Gingerbread (API level 9)
Android 2.3.3–2.3.7 Gingerbread (API level 10)
Android 3.0 Honeycomb (API level 11)
Android 3.1 Honeycomb (API level 12)
Android 3.2 Honeycomb (API level 13)
Android 4.0–4.0.2 Ice Cream Sandwich (API level 14)
Android 4.0.3–4.0.4 Ice Cream Sandwich (API level 15)
Android 4.1 Jelly Bean (API level 16)
Android 4.2 Jelly Bean (API level 17)
Symbol OF Android OS
Our Objective
Our project was “Study the Programming
Environment of Android Based Smart Phone and
Build A Test Application.”
And We thought of Real life application Like music
player(Rhythmbox)….

Purpose :Explains the functional features, design…
Scope : This application can run anonymously in any
Android based Smart-phones , not less than version
2.3.5
Rhythmbox
 Android music player Application
System Features
Start Up
Functional Requirements

 Android operating system on the
Smartphone.
 The target device should be sound
enabled
 The android version should not be
less than 2.3.5
Playlist Menu
 Play
 Stop
 Pause
External Interface Requirements
User Interface Tested on:
 Android emulator version 4.3

Hardware Requirement:
 Core i3 processor
 4 GB RAM
 500 GB Hard Disk
Software Requirement:
 Android SDK Manager
 Eclipse
 ADT(Android Development Tool)
Design

How We Planned The Application
User Modules…

Eclipse

ADT(Android
Development Tool)

Android SDK(Standard Development Kit)

Windows 7 (64 bit)
Level-0 DFD
User input

Android mp3 player
User

Show result
Level-1 DFD
User input for entering into
required OS

Android
OS

User

Taking
instruction
from user
to go to
the next
step

Menu

Show Result

Music
Player

Carrying
instructi
on
receiving
from OS
Building Blocks of Android Code
Android media
player class

XML Code
Writing class for reading
mp3,Play,Stop,Pause

Android MP3Player
Writing Classes needed for Audio
Player
• For Play service:
public void playAudio(View view) {
Intent objIntent = new Intent(this, PlayAudio.class);
startService(objIntent);
}

• For pause Service:
public void pauseAudio(View view) {
Intent objIntent = new Intent(this, PlayAudio.class);
pauseService(objIntent);
}
• For Stop Service:
public void stopAudio(View view) {
Intent objIntent = new Intent(this, PlayAudio.class);
stopService(objIntent);
}
XML Code Required for button
design
• For Button Play:
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="30dp"
android:onClick="playAudio"
android:text="Play"
android:textColor="#00FF00"
android:textStyle="italic"
android:typeface="monospace"
android:bottomRightRadius="150dp"
android:bottomLeftRadius="150dp"
android:topLeftRadius="150dp"
android:topRightRadius="150dp"
/>
• For Button pause:
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/button2"
android:layout_marginLeft="16dp"
android:layout_toRightOf="@+id/button2"
android:onClick="pauseAudio"
android:text="Pause"
android:textColor="#006400"
android:textStyle="italic"
android:typeface="monospace"
android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp"
/>
• For Button Stop:
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button1"
android:layout_alignBottom="@+id/button1"
android:layout_marginLeft="24dp"
android:layout_toRightOf="@+id/button1"
android:onClick="stopAudio"
android:text="Stop"
android:textColor="#FF0000"
android:textStyle="italic"
android:typeface="monospace"
android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp"/>
The android music player
List of references we have used:
•
•
•
•
•
•
•

http://developer.android.com/index.html
http://www.androiddevelopers.in/
http://www.androidpolice.com/
http://android.wordpress.org/
https://code.google.com/p/connectbot/
http://www.google.co.in/mobile/android/
http://www.lynda.com/(Android development video tutorial)
Android mp3 player

Más contenido relacionado

La actualidad más candente

Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentationconnectshilpa
 
Android Operating System
Android Operating SystemAndroid Operating System
Android Operating SystemBilal Mirza
 
Mobile Operating Systems
Mobile Operating SystemsMobile Operating Systems
Mobile Operating SystemsBhargav Radia
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018Rao Purna
 
Hypermedia messageing (UNIT 5)
Hypermedia messageing (UNIT 5)Hypermedia messageing (UNIT 5)
Hypermedia messageing (UNIT 5)nirmalbj
 
MOBILE OPERATING SYSTEM
MOBILE OPERATING SYSTEMMOBILE OPERATING SYSTEM
MOBILE OPERATING SYSTEMcool192
 
Mobile OS Computer presentation
Mobile OS Computer presentationMobile OS Computer presentation
Mobile OS Computer presentationMd Rabius Sany
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Jowin John Chemban
 
Ii 1500-publishing your android application
Ii 1500-publishing your android applicationIi 1500-publishing your android application
Ii 1500-publishing your android applicationAdrian Mikeliunas
 
Introduction to Android ppt
Introduction to Android pptIntroduction to Android ppt
Introduction to Android pptTaha Malampatti
 
Chapter 6 : VIDEO
Chapter 6 : VIDEOChapter 6 : VIDEO
Chapter 6 : VIDEOazira96
 

La actualidad más candente (20)

Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentation
 
Android Platform Architecture
Android Platform ArchitectureAndroid Platform Architecture
Android Platform Architecture
 
Android Operating System
Android Operating SystemAndroid Operating System
Android Operating System
 
Android Operating System
Android Operating SystemAndroid Operating System
Android Operating System
 
Mobile operating system
Mobile operating systemMobile operating system
Mobile operating system
 
Mobile Operating Systems
Mobile Operating SystemsMobile Operating Systems
Mobile Operating Systems
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018
 
Windows Phone PPT
Windows Phone PPTWindows Phone PPT
Windows Phone PPT
 
Android Training
Android TrainingAndroid Training
Android Training
 
Hypermedia messageing (UNIT 5)
Hypermedia messageing (UNIT 5)Hypermedia messageing (UNIT 5)
Hypermedia messageing (UNIT 5)
 
Unity 3d
Unity 3dUnity 3d
Unity 3d
 
MOBILE OPERATING SYSTEM
MOBILE OPERATING SYSTEMMOBILE OPERATING SYSTEM
MOBILE OPERATING SYSTEM
 
Mobile operating systems
Mobile operating systemsMobile operating systems
Mobile operating systems
 
Android PPT
Android PPTAndroid PPT
Android PPT
 
Mobile OS Computer presentation
Mobile OS Computer presentationMobile OS Computer presentation
Mobile OS Computer presentation
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Ii 1500-publishing your android application
Ii 1500-publishing your android applicationIi 1500-publishing your android application
Ii 1500-publishing your android application
 
Introduction to Android ppt
Introduction to Android pptIntroduction to Android ppt
Introduction to Android ppt
 
Chapter 6 : VIDEO
Chapter 6 : VIDEOChapter 6 : VIDEO
Chapter 6 : VIDEO
 

Similar a Android mp3 player

Similar a Android mp3 player (20)

Google android
Google androidGoogle android
Google android
 
History and development of Android OS
History and development of Android OSHistory and development of Android OS
History and development of Android OS
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android (Types, Feature,Application etc..)
Android (Types, Feature,Application etc..)Android (Types, Feature,Application etc..)
Android (Types, Feature,Application etc..)
 
Mobile Hacking Unit 1
Mobile Hacking Unit 1Mobile Hacking Unit 1
Mobile Hacking Unit 1
 
Android
AndroidAndroid
Android
 
Android introduction
Android introductionAndroid introduction
Android introduction
 
Android
AndroidAndroid
Android
 
Android Workshop Presentation
Android Workshop PresentationAndroid Workshop Presentation
Android Workshop Presentation
 
Lec001
Lec001Lec001
Lec001
 
Android 130923124440-phpapp01
Android 130923124440-phpapp01Android 130923124440-phpapp01
Android 130923124440-phpapp01
 
Android Infrastructure
Android InfrastructureAndroid Infrastructure
Android Infrastructure
 
Android technology
Android technology Android technology
Android technology
 
Android-smartphones-userfriedly-google
Android-smartphones-userfriedly-googleAndroid-smartphones-userfriedly-google
Android-smartphones-userfriedly-google
 
Android report
Android reportAndroid report
Android report
 
Android presantation
Android presantationAndroid presantation
Android presantation
 
Android operating system
Android operating systemAndroid operating system
Android operating system
 
PRESENTATION ON ANDROID
PRESENTATION ON ANDROIDPRESENTATION ON ANDROID
PRESENTATION ON ANDROID
 
Android based os
Android based osAndroid based os
Android based os
 
Android Applications
Android ApplicationsAndroid Applications
Android Applications
 

Último

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 

Último (20)

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 

Android mp3 player

  • 1.
  • 2. Developed By.. Shiladitya Basu Chirag Das Sumit Balmiki Subhrojit Das Sambho Ghosh Under guidance of Prof. Subhasis Mitra
  • 4. • Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as Smartphone’s and tablet computers. Initially developed by Android, Inc., which Google backed financially and later bought in 2005, Android was unveiled in 2007 along with the founding of the Open Handset Alliance: a consortium of hardware, software, and telecommunication companies devoted to advancing open standards for mobile devices . The first Android-powered phone was sold in October 2008. • The user interface of Android is based on direct manipulation, using touch inputs that loosely correspond to real-world actions, like swiping, tapping, pinching and reverse pinching to manipulate on-screen objects. • Android allows users to customize their home screens with shortcuts to applications and widgets, which allow users to display live content, such as emails and weather information, directly on the home screen. Applications can further send notifications to the user to inform them of relevant information, such as new emails and text messages.
  • 5. • Android is open source and Google releases the code under the Apache License. This open-source code and permissive licensing allows the software to be freely modified and distributed by device manufacturers, wireless carriers and enthusiast developers. • Android has a large community of developers writing applications ("apps") that extend the functionality of devices, written primarily in the Java programming language • Android is the world's most widely used smart phone platform,[overtaking Symbian in the fourth quarter of 2010. Android is popular with technology companies who require a ready-made, low-cost, customizable and lightweight operating system for high tech devices. • Despite being primarily designed for phones and tablets, it also has been used in televisions, games consoles, digital cameras and other electronics. Android's open nature has encouraged a large community of developers and enthusiasts to use the open-source code as a foundation for community-driven projects, which add new features for advanced users or bring Android to devices which were officially released running other operating systems.
  • 7. • Android's user interface is based on direct manipulation , using touch inputs that loosely correspond to real-world actions, like swiping, tapping, pinching and reverse pinching to manipulate on-screen objects. The response to user input is designed to be immediate and provides a fluid touch interface, often using the vibration capabilities of the device to provide Haptic Feedback to the user. • Internal hardware such as accelerometers, gyroscopes and proximity sensors are used by some applications to respond to additional user actions, for example adjusting the screen from portrait to landscape depending on how the device is oriented, or allowing the user to steer a vehicle in a racing game by rotating the device, simulating control of a steering wheel.
  • 8. • Android home screens are typically made up of app icons and widgets; app icons launch the associated app, whereas widgets display live, autoupdating content such as the weather forecast, the user's email inbox, or a news ticker directly on the home screen. • A home screen may be made up of several pages that the user can swipe back and forth between, though Android's home screen interface is heavily customizable, allowing the user to adjust the look and feel of the device to their tastes. • Third-party apps available on Google Play and other app stores can extensively re-theme the home screen. • Present along the top of the screen is a status bar, showing information about the device and its connectivity. This status bar can be "pulled" down to reveal a notification screen where apps display important information or updates, such as a newly received email or SMS text, in a way that does not immediately interrupt or inconvenience the user.
  • 10. • Since Android devices are usually battery-powered, Android is designed to manage memory (RAM) to keep power consumption at a minimum. • When an Android app is no longer in use, the system will automatically suspend it in memory – while the app is still technically "open," suspended apps consume no resources (e.g. battery power or processing power) • Android manages the apps stored in memory automatically: when memory is low, the system will begin killing apps and processes that have been inactive for a while, in reverse order since they were last used (i.e. oldest first). • This process is designed to be invisible to the user, such that users do not need to manage memory or the killing of apps themselves
  • 12. • • • • • • • • • • • • • • • • Android 1.0 (API level 1) • Android 4.3 Jelly Bean (API level Android 1.1 (API level 2) 18) Android 1.5 Cupcake (API level 3) • Android 4.4 KitKat (API level 19) Android 1.6 Donut (API level 4) Android 2.0 Eclair (API level 5) Android 2.1 Eclair (API level 7) Android 2.2–2.2.3 Froyo (API level 8) Android 2.3–2.3.2 Gingerbread (API level 9) Android 2.3.3–2.3.7 Gingerbread (API level 10) Android 3.0 Honeycomb (API level 11) Android 3.1 Honeycomb (API level 12) Android 3.2 Honeycomb (API level 13) Android 4.0–4.0.2 Ice Cream Sandwich (API level 14) Android 4.0.3–4.0.4 Ice Cream Sandwich (API level 15) Android 4.1 Jelly Bean (API level 16) Android 4.2 Jelly Bean (API level 17)
  • 14. Our Objective Our project was “Study the Programming Environment of Android Based Smart Phone and Build A Test Application.” And We thought of Real life application Like music player(Rhythmbox)…. Purpose :Explains the functional features, design… Scope : This application can run anonymously in any Android based Smart-phones , not less than version 2.3.5
  • 15. Rhythmbox  Android music player Application
  • 17. Start Up Functional Requirements  Android operating system on the Smartphone.  The target device should be sound enabled  The android version should not be less than 2.3.5
  • 18. Playlist Menu  Play  Stop  Pause
  • 19. External Interface Requirements User Interface Tested on:  Android emulator version 4.3 Hardware Requirement:  Core i3 processor  4 GB RAM  500 GB Hard Disk Software Requirement:  Android SDK Manager  Eclipse  ADT(Android Development Tool)
  • 20. Design How We Planned The Application
  • 21. User Modules… Eclipse ADT(Android Development Tool) Android SDK(Standard Development Kit) Windows 7 (64 bit)
  • 22. Level-0 DFD User input Android mp3 player User Show result
  • 23. Level-1 DFD User input for entering into required OS Android OS User Taking instruction from user to go to the next step Menu Show Result Music Player Carrying instructi on receiving from OS
  • 24.
  • 25. Building Blocks of Android Code Android media player class XML Code Writing class for reading mp3,Play,Stop,Pause Android MP3Player
  • 26. Writing Classes needed for Audio Player
  • 27. • For Play service: public void playAudio(View view) { Intent objIntent = new Intent(this, PlayAudio.class); startService(objIntent); } • For pause Service: public void pauseAudio(View view) { Intent objIntent = new Intent(this, PlayAudio.class); pauseService(objIntent); }
  • 28. • For Stop Service: public void stopAudio(View view) { Intent objIntent = new Intent(this, PlayAudio.class); stopService(objIntent); }
  • 29. XML Code Required for button design
  • 30. • For Button Play: <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="20dp" android:layout_marginTop="30dp" android:onClick="playAudio" android:text="Play" android:textColor="#00FF00" android:textStyle="italic" android:typeface="monospace" android:bottomRightRadius="150dp" android:bottomLeftRadius="150dp" android:topLeftRadius="150dp" android:topRightRadius="150dp" />
  • 31. • For Button pause: <Button android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/button2" android:layout_marginLeft="16dp" android:layout_toRightOf="@+id/button2" android:onClick="pauseAudio" android:text="Pause" android:textColor="#006400" android:textStyle="italic" android:typeface="monospace" android:bottomRightRadius="30dp" android:bottomLeftRadius="30dp" android:topLeftRadius="30dp" android:topRightRadius="30dp" />
  • 32. • For Button Stop: <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/button1" android:layout_alignBottom="@+id/button1" android:layout_marginLeft="24dp" android:layout_toRightOf="@+id/button1" android:onClick="stopAudio" android:text="Stop" android:textColor="#FF0000" android:textStyle="italic" android:typeface="monospace" android:bottomRightRadius="30dp" android:bottomLeftRadius="30dp" android:topLeftRadius="30dp" android:topRightRadius="30dp"/>
  • 34. List of references we have used: • • • • • • • http://developer.android.com/index.html http://www.androiddevelopers.in/ http://www.androidpolice.com/ http://android.wordpress.org/ https://code.google.com/p/connectbot/ http://www.google.co.in/mobile/android/ http://www.lynda.com/(Android development video tutorial)