Android Question Need Timetable, Scheduler, or S_Planning

Adamdam

Active Member
Licensed User
Longtime User
Dear All,

I hope to find program/example like timetable, scheduler, or s planning
User can set the time/date say in excel file or on saved table (in file).
The program run event/function at every time in the table.
Say, running mp3 at certain time like in attached figure.

hope to find program/example (or point to start).

thanks in advance
 

Attachments

  • 23157791_1553530308063096_214642031_o.png
    23157791_1553530308063096_214642031_o.png
    103.1 KB · Views: 371

Emme Developer

Well-Known Member
Licensed User
Longtime User
You should use a service. You can put in a db, or a file, the time (dateutils and datetime can help you) of each scheduled plan to start. You can use a db, and get a query with time ordered ASC. Next step is to schedule a service to start at time you found. In each scheduled service start you can check next time and re-schedule the service. You can use startserviceat, or SetExactAndAllowWhileIdle (check this)
 
Upvote 0
Top