I'm a new Android dev and I'm currently developing an app which is to display ListView data from web database.
But what I want is to update the data based on system time.
Let's say right now displaying data from database:
- lalala
- lololo
- wewewe
and I need to update these data automatically FROM the database every 24 hours so that the outcome will be:
- lilili
- wowowo
- popopo
I've tried System.currentTimeMillis(), it does not return any values.
Any professional out there could help me out ?
Thanks in advance.