-1

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.

Ravi
  • 13
  • 1
  • 8
  • Users set goals, you track them based on their performance. Here you save the goal values in the sqlite and measure the performance. So when user comes to the screen , there is a display on how much user achieved. – Ravi May 19 '15 at 05:28

1 Answers1

0

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.

Estevex
  • 791
  • 8
  • 17
  • Thnks Estevex, I looking at confirmation on Sqlite. My fear was I was missing out on some important technique – Ravi Feb 10 '15 at 11:56