@Override
protected void onResume() {
super.onResume();
if (!tts.isSpeaking()) {
tts.speak(voiceD, TextToSpeech.QUEUE_FLUSH, null);
}
}
/* onItin() is already implemented, in fact it works when the activity is already set up and I click a button to call it, but I want to transition to an Activity after adding in the desired voice message via putExtra, and have it speak immediately after the new activity has loaded. Additionally, I've tried debugging but the screen still wont be displayed after the super.onResume() is called.*/