Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Talking Reminder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
RAUSHAN RAJ
Talking Reminder
Commits
240c358e
Commit
240c358e
authored
Nov 02, 2019
by
RAUSHAN RAJ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Raushan] - voice working
parent
ea38dbde
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
+64
-0
No files found.
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
0 → 100644
View file @
240c358e
package
com.blanyal.remindme
;
import
android.app.Activity
;
import
android.app.Service
;
import
android.os.Bundle
;
import
android.os.IBinder
;
import
android.speech.tts.TextToSpeech
;
import
android.app.AlarmManager
;
import
android.app.NotificationManager
;
import
android.app.PendingIntent
;
import
android.content.BroadcastReceiver
;
import
android.content.ComponentName
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.pm.PackageManager
;
import
android.graphics.BitmapFactory
;
import
android.media.RingtoneManager
;
import
android.os.SystemClock
;
import
java.util.Locale
;
public
class
ReadTheMessage
extends
Service
implements
TextToSpeech
.
OnInitListener
,
TextToSpeech
.
OnUtteranceCompletedListener
{
private
TextToSpeech
mTts
;
private
String
spokenText
;
@Override
public
void
onCreate
()
{
mTts
=
new
TextToSpeech
(
this
,
this
);
// This is a good place to set spokenText
spokenText
=
"raushan"
;
}
@Override
public
void
onInit
(
int
status
)
{
if
(
status
==
TextToSpeech
.
SUCCESS
)
{
int
result
=
mTts
.
setLanguage
(
Locale
.
US
);
if
(
result
!=
TextToSpeech
.
LANG_MISSING_DATA
&&
result
!=
TextToSpeech
.
LANG_NOT_SUPPORTED
)
{
mTts
.
speak
(
spokenText
,
TextToSpeech
.
QUEUE_FLUSH
,
null
);
}
}
}
@Override
public
void
onUtteranceCompleted
(
String
uttId
)
{
stopSelf
();
}
@Override
public
void
onDestroy
()
{
if
(
mTts
!=
null
)
{
mTts
.
stop
();
mTts
.
shutdown
();
}
super
.
onDestroy
();
}
@Override
public
IBinder
onBind
(
Intent
arg0
)
{
return
null
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment