![]() |
Talking Reminder
this project is intenfed for people who are not tech savvy
|
A class implementing basic alarm functions This class includes very basic features for an alarm. More...
Public Member Functions | |
| void | onReceive (Context context, Intent intent) |
| void | setAlarm (Context context, Calendar calendar, int ID) |
| void | setRepeatAlarm (Context context, Calendar calendar, int ID, long RepeatTime) |
| void | cancelAlarm (Context context, int ID) |
A class implementing basic alarm functions This class includes very basic features for an alarm.
Definition at line 21 of file AlarmReceiver.java.
| void com.sudogeeks.talking_reminder.AlarmReceiver.cancelAlarm | ( | Context | context, |
| int | ID | ||
| ) |
Method for cancelling an alarm
| context | |
| ID | Id of the alarm to cancel |
Definition at line 139 of file AlarmReceiver.java.
| void com.sudogeeks.talking_reminder.AlarmReceiver.onReceive | ( | Context | context, |
| Intent | intent | ||
| ) |
Notifies user at the time of alarm
| context | |
| intent |
Definition at line 33 of file AlarmReceiver.java.
| void com.sudogeeks.talking_reminder.AlarmReceiver.setAlarm | ( | Context | context, |
| Calendar | calendar, | ||
| int | ID | ||
| ) |
Method for setting an alarm
| context | |
| calendar | Calendar instance encapsulating date and time of alarm |
| ID | Id of the alarm |
Definition at line 73 of file AlarmReceiver.java.
| void com.sudogeeks.talking_reminder.AlarmReceiver.setRepeatAlarm | ( | Context | context, |
| Calendar | calendar, | ||
| int | ID, | ||
| long | RepeatTime | ||
| ) |
Method for setting repeating alarm
| context | |
| calendar | Calendar instance encapsulating date and time of alarm |
| ID | Id of the alarm |
| RepeatTime | repeat time of alaram |
Definition at line 107 of file AlarmReceiver.java.
1.8.16