[android-developers] Re: How to increase the amount of time to consider input complete, in android voice recognition?

2011-04-10 Thread BFL
I was going to play with tweaking these settings, too, because sometimes it takes off to voice recognition land before the user is really done... especially for new users... but the javadoc warns in a way that leads me to believe that these settings could be pretty unreliable... and your

Re: [android-developers] Re: How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-23 Thread Filip Havlicek
Hi vamsi, you should of course specify some integer value representing the silence length in milliseconds. For example: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLIS, 1000);

[android-developers] Re: How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-23 Thread vamsi
Hi Filip Havlicek, I change my code as follows intent.putExtra(RecognizerIntent.EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLIS, 10 ); But i did not see any result. I am testing it with adding zeros to the number. Still same issue am getting. Is there any other way to solve it?

[android-developers] Re: How to increase the amount of time to consider input complete, in android voice recognition?

2011-03-22 Thread vamsi
Thanks Filip Havlicek, I found those string constants in android documentation previously. And tried to use those elements in my app. Following is my code, public static final String EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLIS =