I am developing an application that takes a number of tasks from user and reminds him on time.
So, I need to know how to run my application in the background and how to get the data from SQLite - Date&Time- to set the alarm.
The class of the task:
public class Task {
String name;
String discrb;
int day , month , year ,donecheck ,periocheck,hour,minute;
public Task()
{
name=discrb="";
donecheck =day=month=year=periocheck =0;
}
}