haishmg / TodoApp

A basic todo app with basic functionalities
0 stars 0 forks source link

Extensions to the Todo App #3

Open haishmg opened 8 years ago

haishmg commented 8 years ago

1) Persist the todo items into SQLite instead of a text file 2) Improve style of the todo items in the list using a custom adapter 3) Add support for completion due dates for todo items (and display within listview item) 4) Use a DialogFragment instead of new Activity for editing items 5) Add support for selecting the priority of each todo item (and display in listview item) 6) Tweak the style improving the UI / UX, play with colors, images or backgrounds

todoapp

@codepathreview @codepath

nesquena commented 8 years ago

Great to see you added a number of additional optionals to the app. Hopefully you found the pre-work project really helpful as an introduction to both the class structure and the Android platform.

After reviewing your project, I'd encourage you to take a look at this guide on code organization best practices to cleanup your source code. Also, look forward to you adding additional functionality and iterating on the UI a bit. Of course, let me know if you have any questions.

See you next week. We will be sending more details on first session in the next day or two.

haishmg commented 8 years ago

Thanks for the feedback Nathan. Will try to incorporate them.