Search code examples
androidandroid-sqlitegoal-tracking

How do you implement user Goal Tracking in android


How do you implement goal tracking. Any specific Way of doing. I am thinking storing of user goal in Sqlite db and accessing them and do the logic to track how much is reached. Is there are better way? So we can display the goals reached as completed or how much is completed on the screen , when user comes to screen, he sees how much the user has completed.


Solution

  • Yes you can use SQLite to store user goals. I also recommend using an ORM library for easy management and save some time on setup the database. Try using Sugar ORM or greenDAO as two of the best.