SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application DevelopmentBenny Skogberg
 
Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-pptSrijib Roy
 
Android and android versions
Android and android versionsAndroid and android versions
Android and android versionsMegha Jain
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentationconnectshilpa
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android Ranjith Kumar
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Javaamaankhan
 
Mobile Application Development With Android
Mobile Application Development With AndroidMobile Application Development With Android
Mobile Application Development With Androidguest213e237
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaEdureka!
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018Rao Purna
 
Android ui layout
Android ui layoutAndroid ui layout
Android ui layoutKrazy Koder
 
Mobile operating systems
Mobile operating systemsMobile operating systems
Mobile operating systemsSriram PV
 
Android Operating System
Android Operating SystemAndroid Operating System
Android Operating SystemBilal Mirza
 
Ii 1500-publishing your android application
Ii 1500-publishing your android applicationIi 1500-publishing your android application
Ii 1500-publishing your android applicationAdrian Mikeliunas
 
Presentation on Android application
Presentation on Android applicationPresentation on Android application
Presentation on Android applicationAtibur Rahman
 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with PieOpersys inc.
 

Was ist angesagt? (20)

Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
 
Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-ppt
 
Android and android versions
Android and android versionsAndroid and android versions
Android and android versions
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentation
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Introduction to ios
Introduction to iosIntroduction to ios
Introduction to ios
 
Android Audio System
Android Audio SystemAndroid Audio System
Android Audio System
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Java
 
Mobile Application Development With Android
Mobile Application Development With AndroidMobile Application Development With Android
Mobile Application Development With Android
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018
 
Android ui layout
Android ui layoutAndroid ui layout
Android ui layout
 
Mobile operating systems
Mobile operating systemsMobile operating systems
Mobile operating systems
 
Android Operating System
Android Operating SystemAndroid Operating System
Android Operating System
 
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
 
Presentation on Android application
Presentation on Android applicationPresentation on Android application
Presentation on Android application
 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
 

Ähnlich wie Android mp3 player

Ähnlich wie 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
 

Kürzlich hochgeladen

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
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
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 

Kürzlich hochgeladen (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
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
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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
 

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)