SlideShare a Scribd company logo
UNIT
CONVERT
ER
FOR ANDROID
What is Android
 Android is a software stack for mobile devices
that includes an operating system, middleware
and key applications.
Different Versions
What is an Android Application
 An Android application is a software
application running on the Android platform.
Because the Android platform is built for
mobile devices, a typical Android app is
designed for a Smartphone or a tablet PC
running on the Android Operating System.
Android Studio
 Android Studio is an Integrated Development
Environment (IDE) for developing android
applications for the Android platform.
 It was announced on May 16, 2013 at the
Google I/O conference by Google's Product
Manager, Katherine Chou.
Unit Converter
 Objective
The primary objective of Unit Converter
Application is to allow its users to make most
used unit conversions like km to mile, foot to
inch, Celsius to Fahrenheit and many more
including currency and weight conversions
other than basic length and temperature
conversions.
Unit Converter
 Tools and Languages Used
The project is developed in Java Programming
Language using the Android Studio Integrated
Development Environment or IDE.
Unit Converter
 Description of some functions and terms
Activity
• Activity is a Java code that supports a screen or UI.
Splash Screen
• Splash screen is an activity that will show for set time when
our app is starting and after set time period the user is
redirected to application main screen or main activity.
Unit Converter
Toast
• A toast provides simple feedback about an operation in a
small popup. It only fills the amount of space required for the
message and the current activity remains visible and
interactive.
Spinners
• Spinners provide a quick way to select one value from a set.
In the default state, a spinner shows its currently selected
value. Touching the spinner displays a dropdown menu with
all other available values, from which the user can select a
new one.
Unit Converter
Layout Resource File
• A layout resource defines the architecture for the UI in an
Activity or a component of a UI.
Unit Converter
EditText
 A EditText field allows the user to type text into our app. It can
be either single line or multi-line. Touching a text field places
the cursor and automatically displays the keyboard.
Unit Converter
OnCreate()
 When the user selects our app icon from the Home screen,
the system calls the onCreate() method for the activity in our
app that we've declared to be the "launcher" (or "main")
activity. This is the activity that serves as the main entry point
to our app's user interface. It is called on initial creation of the
fragment & non graphical initializations are done here.
findViewById()
• Android findViewById () is a very commonly used function,
located in the android.app.Activity package. This function is
used to find a view that was identified by the id attribute from
the XML that was processed in onCreate(Bundle) .
Unit Converter
Unit Converter
 Screenshots of the App
Unit Converter
THANK YOU…

More Related Content

PPTX
UNIT CONVERTER APP
PDF
Smart India Hackathon Idea Submission
PDF
Sample_report_for_MINI_PROJECT.docx (1).pdf
DOCX
Unit converter using in c
PPTX
Final Year Project Presentation
PPTX
Converter - C- Language Program
PPT
Currency converter
PPTX
Daily Expense Tracker
UNIT CONVERTER APP
Smart India Hackathon Idea Submission
Sample_report_for_MINI_PROJECT.docx (1).pdf
Unit converter using in c
Final Year Project Presentation
Converter - C- Language Program
Currency converter
Daily Expense Tracker

What's hot (20)

PPTX
Final year project presentation in android application
PDF
JUSTCABS - an Online Cab Reservation System (Final Year Project)
PDF
Arduino Workshop Day 1 - Basic Arduino
DOCX
Converter - C- Language Program
PDF
Project report on home automation using Arduino
DOCX
Apartment management system web application project
PPTX
Smart agriculture system using IOT
PPTX
Student online admission srs
DOC
Android technical quiz app
PPTX
Home automation using arduino
PPTX
object detection using ultra sonic sensors
DOCX
Smart glove hand gesture vocalizer final year report
PDF
Phone book with project report for BCA,MCA
DOCX
Student report
DOCX
Android Based Application Project Report.
PPT
Courier Management System By Mukesh
PPT
Android ppt
DOCX
IoT Smart keychain finder project
PPTX
Project smart notice board ppt
DOCX
Project for Student Result System
Final year project presentation in android application
JUSTCABS - an Online Cab Reservation System (Final Year Project)
Arduino Workshop Day 1 - Basic Arduino
Converter - C- Language Program
Project report on home automation using Arduino
Apartment management system web application project
Smart agriculture system using IOT
Student online admission srs
Android technical quiz app
Home automation using arduino
object detection using ultra sonic sensors
Smart glove hand gesture vocalizer final year report
Phone book with project report for BCA,MCA
Student report
Android Based Application Project Report.
Courier Management System By Mukesh
Android ppt
IoT Smart keychain finder project
Project smart notice board ppt
Project for Student Result System
Ad

Similar to UNIT CONVERTER (20)

PPTX
Mobile Application Development with ANDROID
PDF
Android Introduction
PPTX
Android development orientation for starters v2
KEY
Android Development: The Basics
PDF
Induction into the Android Army
PPTX
Introduction to Android
PDF
Android: Looking beyond the obvious
PDF
Introduction to mobile programming with Androids.
PPT
Android Programming Basic
PPT
Ruby conf2012
PPTX
All about android
PPTX
Java talks. Android intoduction for develompment
PDF
Android introduction
KEY
Development of a mobile app for Android
PPTX
Android ppt
PPTX
Android Development Workshop
PDF
Android Deep Dive
PDF
[Android] Introduction to Android Programming
PDF
Begining Android Development
PDF
Androidoscon20080721 1216843094441821-9
Mobile Application Development with ANDROID
Android Introduction
Android development orientation for starters v2
Android Development: The Basics
Induction into the Android Army
Introduction to Android
Android: Looking beyond the obvious
Introduction to mobile programming with Androids.
Android Programming Basic
Ruby conf2012
All about android
Java talks. Android intoduction for develompment
Android introduction
Development of a mobile app for Android
Android ppt
Android Development Workshop
Android Deep Dive
[Android] Introduction to Android Programming
Begining Android Development
Androidoscon20080721 1216843094441821-9
Ad

UNIT CONVERTER

  • 2. What is Android  Android is a software stack for mobile devices that includes an operating system, middleware and key applications.
  • 4. What is an Android Application  An Android application is a software application running on the Android platform. Because the Android platform is built for mobile devices, a typical Android app is designed for a Smartphone or a tablet PC running on the Android Operating System.
  • 5. Android Studio  Android Studio is an Integrated Development Environment (IDE) for developing android applications for the Android platform.  It was announced on May 16, 2013 at the Google I/O conference by Google's Product Manager, Katherine Chou.
  • 6. Unit Converter  Objective The primary objective of Unit Converter Application is to allow its users to make most used unit conversions like km to mile, foot to inch, Celsius to Fahrenheit and many more including currency and weight conversions other than basic length and temperature conversions.
  • 7. Unit Converter  Tools and Languages Used The project is developed in Java Programming Language using the Android Studio Integrated Development Environment or IDE.
  • 8. Unit Converter  Description of some functions and terms Activity • Activity is a Java code that supports a screen or UI. Splash Screen • Splash screen is an activity that will show for set time when our app is starting and after set time period the user is redirected to application main screen or main activity.
  • 9. Unit Converter Toast • A toast provides simple feedback about an operation in a small popup. It only fills the amount of space required for the message and the current activity remains visible and interactive. Spinners • Spinners provide a quick way to select one value from a set. In the default state, a spinner shows its currently selected value. Touching the spinner displays a dropdown menu with all other available values, from which the user can select a new one.
  • 10. Unit Converter Layout Resource File • A layout resource defines the architecture for the UI in an Activity or a component of a UI.
  • 11. Unit Converter EditText  A EditText field allows the user to type text into our app. It can be either single line or multi-line. Touching a text field places the cursor and automatically displays the keyboard.
  • 12. Unit Converter OnCreate()  When the user selects our app icon from the Home screen, the system calls the onCreate() method for the activity in our app that we've declared to be the "launcher" (or "main") activity. This is the activity that serves as the main entry point to our app's user interface. It is called on initial creation of the fragment & non graphical initializations are done here. findViewById() • Android findViewById () is a very commonly used function, located in the android.app.Activity package. This function is used to find a view that was identified by the id attribute from the XML that was processed in onCreate(Bundle) .