Commit 0126dcf0 authored by RAUSHAN RAJ's avatar RAUSHAN RAJ

[Raushan] - voice as a service working and Ui chnage

parent 240c358e
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</receiver> </receiver>
<service <service
android:name=".AlarmService" android:name=".ReadTheMessage"
android:enabled="true" /> android:enabled="true" />
</application> </application>
......
...@@ -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();
......
...@@ -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(false); .setOnlyAlertOnce(true);
} }
public TextToSpeech getTextToSpeech(){ public TextToSpeech getTextToSpeech(){
......
...@@ -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);
} }
} }
} }
......
...@@ -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();
......
...@@ -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) {
......
...@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment