![]() |
Talking Reminder
this project is intenfed for people who are not tech savvy
|
Class for Text to speech service This class is extending the tts module service to speak up the reminder text. More...
Public Member Functions | |
void | onCreate () |
int | onStartCommand (Intent intent, int flags, int startId) |
void | onInit (int status) |
void | onUtteranceCompleted (String uttId) |
void | onDestroy () |
IBinder | onBind (Intent arg0) |
Class for Text to speech service This class is extending the tts module service to speak up the reminder text.
Definition at line 13 of file ReadReminderTextService.java.
void com.sudogeeks.talking_reminder.ReadReminderTextService.onCreate | ( | ) |
Overrides onCreate , this is the good place to set spokentext.
Definition at line 22 of file ReadReminderTextService.java.
void com.sudogeeks.talking_reminder.ReadReminderTextService.onInit | ( | int | status | ) |
This method overrides onInit and this is calling TTS object to speak up the spoken text.
status |
Definition at line 48 of file ReadReminderTextService.java.
int com.sudogeeks.talking_reminder.ReadReminderTextService.onStartCommand | ( | Intent | intent, |
int | flags, | ||
int | startId | ||
) |
Overrides OnStartCommand of service class , this is used to get reminder text which will be spoken.
intent | |
flags | |
startId |
Definition at line 37 of file ReadReminderTextService.java.