Mobile App Dev 2021W: Assignment 3

From Soma-notes
Jump to navigation Jump to search

In this assignment you will be analyzing and extending Converter2A from Tutorial 6.

This assignment has 20 points in 8 questions. Please submit your answers using the supplied template. Your answers are due via cuLearn on March 28, 2021.

Tasks

  1. [2] Add debugging log messages that report on activity lifecycle events. The log key should be "Converter2A".
  2. [2] Add a Farenheit to Kelvin conversion, making sure that the conversion fails if the converted value would be less than 0 Kelvin (as nothing can be colder than absolute zero). What does the app do when you give it -500F and you ask it to convert to Kelvin (with no other changes)? Why?
  3. [2] Add an entry to the menu "Cars to Cows" that has no corresponding conversion by modifying the conversions map.
  4. [4] The "Cars to Cows" conversion still allows input to be entered, and that input is sometimes converted to another value. Why does this happen? How can you change the code so the input field is only active when a valid menu selection is made?
  5. [2] Converter2A's layout is messed up when in landscape mode (the device turned horizontally). Why? What is wrong with the current layout?
  6. [2] Fix Converter2A's layout by converting it to a LinearLayout. You don't need to keep spacing the same, just make sure it looks reasonable in portrait and landscape modes.
  7. [2] Fix Converter2A's layout while keeping it a ConstrainedLayout. You don't need to keep spacing the same, just make sure it looks reasonable in portrait and landscape modes.
  8. [4] When rotated, Converter2A doesn't remember the current state of the app. Modify it so it saves and restores the selected conversion and the value being input when the main activity is destroyed and re-created.

Solutions

Assignment 3 solutions