SlideShare a Scribd company logo
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

More Related Content

What's hot

Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Ahsanul Karim
 
Android Widget
Android WidgetAndroid Widget
Android Widget
ELLURU Kalyan
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
Aly Abdelkareem
 
Android app development
Android app developmentAndroid app development
Android app development
Tanmoy Roy
 
Android architecture
Android architectureAndroid architecture
Android architecture
Kartik Kalpande Patil
 
Android Project Presentation
Android Project PresentationAndroid Project Presentation
Android Project Presentation
Laxmi Kant Yadav
 
Android ppt
Android pptAndroid ppt
Android ppt
Ansh Singh
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
Suyash Srijan
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
Ranjith Kumar
 
Introduction to Android ppt
Introduction to Android pptIntroduction to Android ppt
Introduction to Android ppt
Taha Malampatti
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
zeelpatel0504
 
Android Synopsis
Android SynopsisAndroid Synopsis
Android Synopsis
Niraj Rahi
 
Android Web app
Android Web app Android Web app
Android Web app
Sumit Kumar
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]
Jowin John Chemban
 
Android Architecture
Android ArchitectureAndroid Architecture
Android Architecture
deepakshare
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018
Rao Purna
 
Presentation on Android application
Presentation on Android applicationPresentation on Android application
Presentation on Android applicationAtibur Rahman
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
Edureka!
 
android architecture
android architectureandroid architecture
android architectureAashita Gupta
 
Android application development ppt
Android application development pptAndroid application development ppt
Android application development ppt
Gautam Kumar
 

What's hot (20)

Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)
 
Android Widget
Android WidgetAndroid Widget
Android Widget
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
 
Android app development
Android app developmentAndroid app development
Android app development
 
Android architecture
Android architectureAndroid architecture
Android architecture
 
Android Project Presentation
Android Project PresentationAndroid Project Presentation
Android Project Presentation
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
 
Introduction to Android ppt
Introduction to Android pptIntroduction to Android ppt
Introduction to Android ppt
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android Synopsis
Android SynopsisAndroid Synopsis
Android Synopsis
 
Android Web app
Android Web app Android Web app
Android Web app
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]
 
Android Architecture
Android ArchitectureAndroid Architecture
Android Architecture
 
Android PPT Presentation 2018
Android PPT Presentation 2018Android PPT Presentation 2018
Android PPT Presentation 2018
 
Presentation on Android application
Presentation on Android applicationPresentation on Android application
Presentation on Android application
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
 
android architecture
android architectureandroid architecture
android architecture
 
Android application development ppt
Android application development pptAndroid application development ppt
Android application development ppt
 

Similar to Android mp3 player

Google android
Google androidGoogle android
Google android
Ayush Sharma
 
History and development of Android OS
History and development of Android OSHistory and development of Android OS
History and development of Android OS
usernameleon
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
Swapnali Pawar
 
Android (Types, Feature,Application etc..)
Android (Types, Feature,Application etc..)Android (Types, Feature,Application etc..)
Android (Types, Feature,Application etc..)
Coder Tech
 
Mobile Hacking Unit 1
Mobile Hacking Unit 1Mobile Hacking Unit 1
Mobile Hacking Unit 1
ChatanBawankar
 
Android
AndroidAndroid
Android introduction
Android introductionAndroid introduction
Android introduction
AalemDaneshyar
 
Android
AndroidAndroid
Android Workshop Presentation
Android Workshop PresentationAndroid Workshop Presentation
Android Workshop PresentationNAILBITER
 
Lec001
Lec001Lec001
Lec001
Eyad Almasri
 
Android 130923124440-phpapp01
Android 130923124440-phpapp01Android 130923124440-phpapp01
Android 130923124440-phpapp01
rajesh kumar
 
Android Infrastructure
Android InfrastructureAndroid Infrastructure
Android Infrastructure
Eyad Almasri
 
Android technology
Android technology Android technology
Android technology
vikas malviya
 
Android-smartphones-userfriedly-google
Android-smartphones-userfriedly-googleAndroid-smartphones-userfriedly-google
Android-smartphones-userfriedly-google
Souvik Chakrabarti
 
Android report
Android reportAndroid report
Android report
blogger at indiandswad
 
Android presantation
Android presantationAndroid presantation
Android presantation
UdayJethva
 
Android operating system
Android operating systemAndroid operating system
Android operating system
Ayush Agarwal
 
PRESENTATION ON ANDROID
PRESENTATION ON ANDROIDPRESENTATION ON ANDROID
PRESENTATION ON ANDROID
Rajat Kumar
 
Android based os
Android based osAndroid based os
Android based os
Robinson Johnwilson
 
Android ppt
Android pptAndroid ppt

Similar to 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 ppt
Android pptAndroid ppt
Android ppt
 

Recently uploaded

Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 

Recently uploaded (20)

Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 

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)