Monday, June 6, 2011

Android Text To Speech Example

Android Text To Speech Example

DOWNLOAD SOURCE CODE


Actually that’s the whole code.
You just need to create a TextToSpeech object.


this code text to speech simple example code


SOURCE CODE


public class MainActivity extends Activity implements OnInitListener {

    TextToSpeech textTalker;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button tv=(Button)findViewById(R.id.button1);
       
      
        textTalker = new TextToSpeech(this, this);
       
        tv.setOnClickListener(new OnClickListener() {
           
            public void onClick(View v) {
                // TODO Auto-generated method stub
                 EditText et=(EditText)findViewById(R.id.editText1);
                 textTalker.speak(et.getText().toString(), TextToSpeech.SUCCESS, null);
            }
           
        });
    }

    @Override
    public void onDestroy() {
        if (textTalker != null) {
            textTalker.stop();
            textTalker.shutdown();
        }

        super.onDestroy();
    }

    public void onInit(int status) {
        // TODO Auto-generated method stub
       
    }
   
   
}

10 comments:

  1. hi sir, i am making an application of text to speech in android. is there a source code of syllabification process? thanks in advance..

    ReplyDelete
  2. this is not working

    ReplyDelete
  3. when i enter text and clicked on button...nothing haapend..............

    ReplyDelete
  4. if its not working then repalce it

    extTalker.speak(et.getText().toString(), TextToSpeech.SUCCESS, null);
    WITH IT
    textTalker.speak(intentDataHolder.getString("MsgTxt"), TextToSpeech.QUEUE_ADD, null);
    Now it will surely work.....

    ReplyDelete
  5. Doesn't work even with the TextToSpeech.QUEUE_ADD - dude, test your code before posting.

    ReplyDelete
  6. hi , this code working for me . once again test it.

    ReplyDelete
  7. this code worked 4 me to......u should test it again...

    ReplyDelete
  8. I need Codinng 4 Speech to Text

    ReplyDelete
  9. hey sir.
    i also need coding 4 speech to text...

    ReplyDelete

Check out this may be help you

Related Posts Plugin for WordPress, Blogger...