#TO DO LIST
This app is a simple Android application (for Android 4.4 and below) to manage task to do with a title and a content
On your first use, this is what you will see :
Then click on the button New Task.
A dialog box will appear :
Fill the field Title and Content, then click on Add. Your task is now saved in the application.
If you want to edit a task, or mark it as done, just long click on the task.
Another dialog box will appear :
And here you can modify or delete your task.
There's two activities in the project ;
MainActivitywhere everything is orchestratedonCreateinitialized the application and the list of tasksetupListViewListenersetup the listener for the different task on the list (click and long click) and the edit dialog box showed beforeonAddItemis the function called when the buttonNew Taskis pressedreadItemsandwriteItemsare the low-level function used for the persistency of the data
SplashScreenActivityfor the splash screen
To build the project, run :
gradle buildTo create the APK :
gradle assembleRelease

