String toSpeak=null;
public void speakText(View view){
//String toSpeak = write.getText().toString();
Toast.makeText(getApplicationContext(), toSpeak,
Toast.LENGTH_SHORT).show();
ttobj.speak(toSpeak, TextToSpeech.QUEUE_ADD, null);
}
And i am calling like this
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.receive_payment);
toSpeak="Hello Mr Prawin";
speakText();
}
why because i want to call this function On load Layout Event