Mobile Applications Development (Android Section)
Temperature Converter for Android
Temperature Conversion app as described below.
App Requirements
The app should allow the user to select either Fahrenheit-to-Celsius or Celsius-to-Fahrenheit conversions. Conversion is selected using Radio Buttons. Fahrenheit-to-Celsius should be the default if there is no saved preference
User the following formulae for conversion:
o F to C: (F – 32.0) / 1.8 Example (75F): (75.0 – 32.0) / 1.8 = 23.9C
o C to F: (C * 1.8) + 32 Example (15C): (15.0 * 1.8) + 32.0 = 59F
The temperature value (the value to be converted) should be entered by the Values can be positive or negative. Only numeric whole or decimal values should be allowed.
Pressing a Convert button should generate the converted temperature value and display it on the screen. All converted values should be displayed out to 1 decimal place only
All conversion operations and their results should be added to the “history” – a list of converted values. The history of converted values must be scrollable and displayed with the most recent conversions at the top of the list
Examples:
F to C: 75.0 9
C to F: 15.0 0
Pressing the “Clear” button will clear the conversion
The Constraint Layout must be
You do need a separate Landscape layout for this
The app must look and act consistently in either portrait or landscape No data content should be lost upon rotation (i.e., the current conversion, the current calculated results, and the conversion history should be maintained upon rotation).
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of