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
0126dcf0
Commit
0126dcf0
authored
Nov 03, 2019
by
RAUSHAN RAJ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Raushan] - voice as a service working and Ui chnage
parent
240c358e
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
340 additions
and
367 deletions
+340
-367
app/src/main/AndroidManifest.xml
app/src/main/AndroidManifest.xml
+1
-1
app/src/main/java/com/blanyal/remindme/AlarmReceiver.java
app/src/main/java/com/blanyal/remindme/AlarmReceiver.java
+11
-10
app/src/main/java/com/blanyal/remindme/NotificationHelper.java
...rc/main/java/com/blanyal/remindme/NotificationHelper.java
+3
-3
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
+14
-2
app/src/main/java/com/blanyal/remindme/ReminderAddActivity.java
...c/main/java/com/blanyal/remindme/ReminderAddActivity.java
+86
-31
app/src/main/java/com/blanyal/remindme/ReminderEditActivity.java
.../main/java/com/blanyal/remindme/ReminderEditActivity.java
+27
-27
app/src/main/res/layout/activity_add_reminder.xml
app/src/main/res/layout/activity_add_reminder.xml
+197
-292
app/src/main/res/values/strings.xml
app/src/main/res/values/strings.xml
+1
-1
No files found.
app/src/main/AndroidManifest.xml
View file @
0126dcf0
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
</receiver>
</receiver>
<service
<service
android:name=
".
AlarmServic
e"
android:name=
".
ReadTheMessag
e"
android:enabled=
"true"
/>
android:enabled=
"true"
/>
</application>
</application>
...
...
app/src/main/java/com/blanyal/remindme/AlarmReceiver.java
View file @
0126dcf0
...
@@ -85,28 +85,29 @@ public class AlarmReceiver extends BroadcastReceiver {
...
@@ -85,28 +85,29 @@ public class AlarmReceiver extends BroadcastReceiver {
// tts
// tts
// context.startService(new Intent(context, ReadTheMessage.class));
// context.startService(new Intent(context, ReadTheMessage.class));
// String number = mTitle;
// Intent i = new Intent(this, ReadTheMessage.class);
// i.putExtra("MyNumber", number);
// startService(i);
//
Intent
i
=
new
Intent
(
context
,
ReadTheMessage
.
class
);
i
.
putExtra
(
"MyTitle"
,
mTitle
);
context
.
startService
(
i
);
context
.
startService
(
i
);
context
.
startService
(
i
);
//context.startService(new Intent(context, ReadTheMessage.class));
Intent
speechIntent
=
new
Intent
();
//
Intent speechIntent = new Intent();
speechIntent
.
setClass
(
context
,
ReadTheMessage
.
class
);
//
speechIntent.setClass(context, ReadTheMessage.class);
speechIntent
.
putExtra
(
"MESSAGE"
,
mTitle
);
//
speechIntent.putExtra("MESSAGE",mTitle );
speechIntent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
|
Intent
.
FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
);
//
speechIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
context
.
startActivity
(
speechIntent
);
//
context.startActivity(speechIntent);
////
////
// Intent speechIntent = new Intent();
// Intent speechIntent = new Intent();
...
...
app/src/main/java/com/blanyal/remindme/NotificationHelper.java
View file @
0126dcf0
...
@@ -86,11 +86,11 @@ public class NotificationHelper extends ContextWrapper {
...
@@ -86,11 +86,11 @@ public class NotificationHelper extends ContextWrapper {
.
setContentText
(
mTitle
)
.
setContentText
(
mTitle
)
//.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM))
//.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM))
// .setSound(Uri.fromFile(new File("SDCARD/s1.mp3")))
// .setSound(Uri.fromFile(new File("SDCARD/s1.mp3")))
.
setSound
(
null
)
//
.setSound(null)
.
setPriority
(
NotificationManager
.
IMPORTANCE_LOW
)
.
setContentIntent
(
mClick
)
.
setContentIntent
(
mClick
)
.
setAutoCancel
(
true
)
.
setAutoCancel
(
true
)
.
setOnlyAlertOnce
(
fals
e
);
.
setOnlyAlertOnce
(
tru
e
);
}
}
public
TextToSpeech
getTextToSpeech
(){
public
TextToSpeech
getTextToSpeech
(){
...
...
app/src/main/java/com/blanyal/remindme/ReadTheMessage.java
View file @
0126dcf0
...
@@ -30,7 +30,13 @@ public class ReadTheMessage extends Service implements TextToSpeech.OnInitListen
...
@@ -30,7 +30,13 @@ public class ReadTheMessage extends Service implements TextToSpeech.OnInitListen
public
void
onCreate
()
{
public
void
onCreate
()
{
mTts
=
new
TextToSpeech
(
this
,
this
);
mTts
=
new
TextToSpeech
(
this
,
this
);
// This is a good place to set spokenText
// This is a good place to set spokenText
spokenText
=
"raushan"
;
// spokenText="raushan raushan raushan raushan";
}
@Override
public
int
onStartCommand
(
Intent
intent
,
int
flags
,
int
startId
)
{
spokenText
=
intent
.
getStringExtra
(
"MyTitle"
);
return
START_STICKY
;
}
}
@Override
@Override
...
@@ -38,7 +44,13 @@ public class ReadTheMessage extends Service implements TextToSpeech.OnInitListen
...
@@ -38,7 +44,13 @@ public class ReadTheMessage extends Service implements TextToSpeech.OnInitListen
if
(
status
==
TextToSpeech
.
SUCCESS
)
{
if
(
status
==
TextToSpeech
.
SUCCESS
)
{
int
result
=
mTts
.
setLanguage
(
Locale
.
US
);
int
result
=
mTts
.
setLanguage
(
Locale
.
US
);
if
(
result
!=
TextToSpeech
.
LANG_MISSING_DATA
&&
result
!=
TextToSpeech
.
LANG_NOT_SUPPORTED
)
{
if
(
result
!=
TextToSpeech
.
LANG_MISSING_DATA
&&
result
!=
TextToSpeech
.
LANG_NOT_SUPPORTED
)
{
mTts
.
speak
(
spokenText
,
TextToSpeech
.
QUEUE_FLUSH
,
null
);
mTts
.
speak
(
spokenText
,
TextToSpeech
.
QUEUE_ADD
,
null
);
}
}
}
}
}
}
...
...
app/src/main/java/com/blanyal/remindme/ReminderAddActivity.java
View file @
0126dcf0
...
@@ -28,6 +28,7 @@ import android.text.TextWatcher;
...
@@ -28,6 +28,7 @@ import android.text.TextWatcher;
import
android.view.Menu
;
import
android.view.Menu
;
import
android.view.MenuItem
;
import
android.view.MenuItem
;
import
android.view.View
;
import
android.view.View
;
import
android.widget.Button
;
import
android.widget.DatePicker
;
import
android.widget.DatePicker
;
import
android.widget.EditText
;
import
android.widget.EditText
;
import
android.widget.Switch
;
import
android.widget.Switch
;
...
@@ -43,7 +44,7 @@ import com.google.android.material.floatingactionbutton.FloatingActionButton;
...
@@ -43,7 +44,7 @@ import com.google.android.material.floatingactionbutton.FloatingActionButton;
import
java.util.Calendar
;
import
java.util.Calendar
;
public
class
ReminderAddActivity
extends
AppCompatActivity
{
public
class
ReminderAddActivity
extends
AppCompatActivity
implements
View
.
OnClickListener
{
private
Toolbar
mToolbar
;
private
Toolbar
mToolbar
;
private
EditText
mTitleText
;
private
EditText
mTitleText
;
...
@@ -60,6 +61,7 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -60,6 +61,7 @@ public class ReminderAddActivity extends AppCompatActivity {
private
String
mRepeatNo
;
private
String
mRepeatNo
;
private
String
mRepeatType
;
private
String
mRepeatType
;
private
String
mActive
;
private
String
mActive
;
private
Button
btnDatePicker
,
btnTimePicker
;
// Values for orientation change
// Values for orientation change
private
static
final
String
KEY_TITLE
=
"title_key"
;
private
static
final
String
KEY_TITLE
=
"title_key"
;
...
@@ -86,14 +88,15 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -86,14 +88,15 @@ public class ReminderAddActivity extends AppCompatActivity {
// Initialize Views
// Initialize Views
mToolbar
=
(
Toolbar
)
findViewById
(
R
.
id
.
toolbar
);
mToolbar
=
(
Toolbar
)
findViewById
(
R
.
id
.
toolbar
);
mTitleText
=
(
EditText
)
findViewById
(
R
.
id
.
reminder_title
);
mTitleText
=
(
EditText
)
findViewById
(
R
.
id
.
reminder_title
);
mDateText
=
(
TextView
)
findViewById
(
R
.
id
.
set_date
);
mDateText
=
(
EditText
)
findViewById
(
R
.
id
.
set_date
);
mTimeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_time
);
mTimeText
=
(
EditText
)
findViewById
(
R
.
id
.
set_time
);
mRepeatText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat
);
mRepeatText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat
);
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
// mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
// mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
btnDatePicker
=
(
Button
)
findViewById
(
R
.
id
.
btn_date
);
btnTimePicker
=
(
Button
)
findViewById
(
R
.
id
.
btn_time
);
// Setup Toolbar
// Setup Toolbar
setSupportActionBar
(
mToolbar
);
setSupportActionBar
(
mToolbar
);
getSupportActionBar
().
setTitle
(
R
.
string
.
title_activity_add_reminder
);
getSupportActionBar
().
setTitle
(
R
.
string
.
title_activity_add_reminder
);
...
@@ -168,15 +171,15 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -168,15 +171,15 @@ public class ReminderAddActivity extends AppCompatActivity {
mActive
=
savedInstanceState
.
getString
(
KEY_ACTIVE
);
mActive
=
savedInstanceState
.
getString
(
KEY_ACTIVE
);
}
}
// Setup up active buttons
//
// Setup up active buttons
if
(
mActive
.
equals
(
"false"
))
{
//
if (mActive.equals("false")) {
mFAB1
.
show
();
//
mFAB1.show();
mFAB2
.
hide
();
//
mFAB2.hide();
//
}
else
if
(
mActive
.
equals
(
"true"
))
{
//
} else if (mActive.equals("true")) {
mFAB1
.
hide
();
//
mFAB1.hide();
mFAB2
.
show
();
//
mFAB2.show();
}
//
}
}
}
// To save state on device rotation
// To save state on device rotation
...
@@ -237,7 +240,7 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -237,7 +240,7 @@ public class ReminderAddActivity extends AppCompatActivity {
datePickerDialog
.
show
();
datePickerDialog
.
show
();
}
}
// Obtain time from time picker
//
// Obtain time from time picker
// @Override
// @Override
// public void onTimeSet(TimePicker timePicker, int hourOfDay, int minute) {
// public void onTimeSet(TimePicker timePicker, int hourOfDay, int minute) {
// mHour = hourOfDay;
// mHour = hourOfDay;
...
@@ -261,24 +264,76 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -261,24 +264,76 @@ public class ReminderAddActivity extends AppCompatActivity {
// mDateText.setText(mDate);
// mDateText.setText(mDate);
// }
// }
// On clicking the active button
public
void
selectFab1
(
View
v
)
{
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
mFAB1
.
hide
();
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
mFAB2
.
show
();
mActive
=
"true"
;
}
// On clicking the inactive button
public
void
selectFab2
(
View
v
)
{
@Override
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
public
void
onClick
(
View
v
)
{
mFAB2
.
hide
();
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
if
(
v
==
btnDatePicker
)
{
mFAB1
.
show
();
// Get Current Date
mActive
=
"false"
;
final
Calendar
c
=
Calendar
.
getInstance
();
mYear
=
c
.
get
(
Calendar
.
YEAR
);
mMonth
=
c
.
get
(
Calendar
.
MONTH
);
mDay
=
c
.
get
(
Calendar
.
DAY_OF_MONTH
);
DatePickerDialog
datePickerDialog
=
new
DatePickerDialog
(
this
,
new
DatePickerDialog
.
OnDateSetListener
()
{
@Override
public
void
onDateSet
(
DatePicker
view
,
int
year
,
int
monthOfYear
,
int
dayOfMonth
)
{
mDateText
.
setText
(
dayOfMonth
+
"-"
+
(
monthOfYear
+
1
)
+
"-"
+
year
);
}
},
mYear
,
mMonth
,
mDay
);
datePickerDialog
.
show
();
}
if
(
v
==
btnTimePicker
)
{
// Get Current Time
final
Calendar
c
=
Calendar
.
getInstance
();
mHour
=
c
.
get
(
Calendar
.
HOUR_OF_DAY
);
mMinute
=
c
.
get
(
Calendar
.
MINUTE
);
// Launch Time Picker Dialog
TimePickerDialog
timePickerDialog
=
new
TimePickerDialog
(
this
,
new
TimePickerDialog
.
OnTimeSetListener
()
{
@Override
public
void
onTimeSet
(
TimePicker
view
,
int
hourOfDay
,
int
minute
)
{
mTimeText
.
setText
(
hourOfDay
+
":"
+
minute
);
}
},
mHour
,
mMinute
,
false
);
timePickerDialog
.
show
();
}
}
}
// // On clicking the active button
// public void selectFab1(View v) {
// // mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
// mFAB1.hide();
// mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
// mFAB2.show();
// mActive = "true";
// }
//
// // On clicking the inactive button
// public void selectFab2(View v) {
// mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
// mFAB2.hide();
// mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
// mFAB1.show();
// mActive = "false";
// }
// On clicking the repeat switch
// On clicking the repeat switch
public
void
onSwitchRepeat
(
View
view
)
{
public
void
onSwitchRepeat
(
View
view
)
{
boolean
on
=
((
Switch
)
view
).
isChecked
();
boolean
on
=
((
Switch
)
view
).
isChecked
();
...
...
app/src/main/java/com/blanyal/remindme/ReminderEditActivity.java
View file @
0126dcf0
...
@@ -102,8 +102,8 @@ public class ReminderEditActivity extends AppCompatActivity {
...
@@ -102,8 +102,8 @@ public class ReminderEditActivity extends AppCompatActivity {
mRepeatText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat
);
mRepeatText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat
);
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
//
mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
//
mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
mRepeatSwitch
=
(
Switch
)
findViewById
(
R
.
id
.
repeat_switch
);
mRepeatSwitch
=
(
Switch
)
findViewById
(
R
.
id
.
repeat_switch
);
// Setup Toolbar
// Setup Toolbar
...
@@ -180,15 +180,15 @@ public class ReminderEditActivity extends AppCompatActivity {
...
@@ -180,15 +180,15 @@ public class ReminderEditActivity extends AppCompatActivity {
mActive
=
savedInstanceState
.
getString
(
KEY_ACTIVE
);
mActive
=
savedInstanceState
.
getString
(
KEY_ACTIVE
);
}
}
// Setup up active buttons
//
// Setup up active buttons
if
(
mActive
.
equals
(
"false"
))
{
//
if (mActive.equals("false")) {
mFAB1
.
show
();
//
mFAB1.show();
mFAB2
.
hide
();
//
mFAB2.hide();
//
}
else
if
(
mActive
.
equals
(
"true"
))
{
//
} else if (mActive.equals("true")) {
mFAB1
.
hide
();
//
mFAB1.hide();
mFAB2
.
show
();
//
mFAB2.show();
}
//
}
// Setup repeat switch
// Setup repeat switch
if
(
mRepeat
.
equals
(
"false"
))
{
if
(
mRepeat
.
equals
(
"false"
))
{
...
@@ -298,22 +298,22 @@ public class ReminderEditActivity extends AppCompatActivity {
...
@@ -298,22 +298,22 @@ public class ReminderEditActivity extends AppCompatActivity {
// }
// }
// On clicking the active button
// On clicking the active button
public
void
selectFab1
(
View
v
)
{
//
public void selectFab1(View v) {
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
//
mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
mFAB1
.
hide
();
//
mFAB1.hide();
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
//
mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
mFAB2
.
show
();
//
mFAB2.show();
mActive
=
"true"
;
//
mActive = "true";
}
//
}
//
// On clicking the inactive button
//
// On clicking the inactive button
public
void
selectFab2
(
View
v
)
{
//
public void selectFab2(View v) {
mFAB2
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred2
);
//
mFAB2 = (FloatingActionButton) findViewById(R.id.starred2);
mFAB2
.
hide
();
//
mFAB2.hide();
mFAB1
=
(
FloatingActionButton
)
findViewById
(
R
.
id
.
starred1
);
//
mFAB1 = (FloatingActionButton) findViewById(R.id.starred1);
mFAB1
.
show
();
//
mFAB1.show();
mActive
=
"false"
;
//
mActive = "false";
}
//
}
// On clicking the repeat switch
// On clicking the repeat switch
public
void
onSwitchRepeat
(
View
view
)
{
public
void
onSwitchRepeat
(
View
view
)
{
...
...
app/src/main/res/layout/activity_add_reminder.xml
View file @
0126dcf0
This diff is collapsed.
Click to expand it.
app/src/main/res/values/strings.xml
View file @
0126dcf0
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<resources>
<resources>
<string
name=
"app_name"
>
Remindly
</string>
<string
name=
"app_name"
>
Talking Reminder
</string>
<string
name=
"title_activity_add_reminder"
>
Add Reminder
</string>
<string
name=
"title_activity_add_reminder"
>
Add Reminder
</string>
<string
name=
"title_activity_edit_reminder"
>
Edit Reminder
</string>
<string
name=
"title_activity_edit_reminder"
>
Edit Reminder
</string>
...
...
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