So I'm developer and currently working on an android to-do list app.
I'm looking for a way to store the date entered by the user:
- time
- title
- description
- etc..
Is there is a way to create variables dynamically ? (e.g. task1, task2, etc..)
Or should I work with 3 arrays for the time, title, description.
For example:
Time = ["5pm","4:15pm","6:30am"]
Title = ["Pick up the kids","meet Ammy"]
Thank you.
Task. As you don't know howmany tasks there will be, you will not use an array but aListsuch asArrayList