westonplatter / mapper

Android Mapper Application
Other
1 stars 1 forks source link

Favorites View #9

Closed ushavinodh closed 12 years ago

ushavinodh commented 12 years ago

Description: As a user, I want the application to provide the ability to store a list of my favorite destinations so that they can be easily retrieved.

Tasks:

  1. Facility to enter/choose destination
  2. Provide "save" button to save destination.
  3. Store the favorites into persistence store/DB/device permanent memory.
  4. Once user reaches the preset limit of 25 items, alert the user that he overshot his limit and provide an option to "continue" or "cancel".
  5. If user presses "continue" for step 4,remove the earliest item and store this item as the last one entered.
  6. If the user chooses "cancel", do nothing.
ushavinodh commented 12 years ago

Currently the app stores 50 items in shared preferences based persistent storage. This resides in /data/data/com.mapper.activities/shared_prefs/ . In addition the app has buttons to add favorites, remove favorites, and alert/notification to inform the user once max limit is reached, as well as user is provided with a "cancel" or "ok" button to cancel the action.

ushavinodh commented 12 years ago

Currently the app stores 50 items in shared preferences based persistent storage. This resides in /data/data/com.mapper.activities/shared_prefs/ . In addition the app has buttons to add favorites, remove favorites, and alert/notification to inform the user once max limit is reached, as well as user is provided with a "cancel" or "ok" button to cancel the action.