I am trying to do a browser control appication with voice in android. I am using RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent to recognize voice. It usually works but sometimes when voice recognition pop up opens and comes with "unknown problem" and my WebView don't load my URL, stays with old URL.

Here is my code:

            //Load web view to default search screen 
            webView.loadUrl(Constant.DEFAULT_VOICE_BG);

    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.ACTION_RECOGNIZE_SPEECH, getClass()
            .getPackage().getName());
        intent.putExtra(RecognizerIntent.EXTRA_PROMPT,
            GeneralConstants.TEXT_VOICE);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
            RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 5);
        startActivityForResult(intent,
            GeneralConstants.VOICE_RECOGNITION_REQUEST_CODE);

Thanks for any idea. Best Regards.

link|improve this question

72% accept rate
1  
After the completion of the activity your onActivityResult() will be called, so check here if your are loading previous page. – Deepak Dec 28 '11 at 10:33
thank you, i think i solve problem with your idea – cagryInside Dec 28 '11 at 11:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.