#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 ;
MainActivity
where everything is orchestratedonCreate
initialized the application and the list of tasksetupListViewListener
setup the listener for the different task on the list (click and long click) and the edit dialog box showed beforeonAddItem
is the function called when the buttonNew Task
is pressedreadItems
andwriteItems
are the low-level function used for the persistency of the data
SplashScreenActivity
for the splash screen
To build the project, run :
gradle build
To create the APK :
gradle assembleRelease