package com.kmccmk9.CarVoice;
import android.app.Activity;
import android.content.Intent;
import android.widget.TextView;
import android.os.Bundle;
import android.speech.tts.*;
public class CarVoice extends Activity implements OnInitListener {
/** Called when the activity is first created. */
private TextToSpeech tts;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView lbl_tv = new TextView(this);
lbl_tv.setText("Welcome to Car Voice. This app was designed for you to never have to use your hand for your phone while you are in the car.");
lbl_tv.setTextSize(28);
setContentView(lbl_tv);
Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, 0);
tts = new TextToSpeech(this, this);
}
@Override
public void onInit(int arg0) {
// TODO Auto-generated method stub
String speech1 = "How are you?";
String speech2 = "I hope you are fine.";
tts.setLanguage(Locale.US);
tts.speak(speech1, TextToSpeech.QUEUE_FLUSH, null);
tts.speak(speech2, TextToSpeech.QUEUE_ADD, null);
}
}