[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-03-11 Thread Moto
You might have to download the speech recognition? I know google maps requires downloading voice app or something... On Feb 24, 4:34 am, Mukesh kumar wrote: > how the emulator get activity: >   "android.speech.action.RECOGNIZE_SPEECH" > > when we use code : > > Intent intent = new Intent("androi

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-03-11 Thread John
You should probably be adding some code to verify if the speech recognition library is available on the device. Generally this is a good practice for any external intent. Here is a code segment that can help you out. // Check to see if a recognition activity is present PackageManager pm

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-03-11 Thread Zigurd
Handle the exception. There is no guarantee that an Intent will get a match, and the situation can change as the user adds and deletes applications. Conceivably, matches could go away in future version of Android, or in a port of Android with very different hardware than a phone. So even if it wor

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-02-23 Thread Kumar Bibek
The emulator doesn't have this Activity. That is why you are getting this exception. On Feb 24, 11:04 am, Sandeep Phansekar wrote: > plz explain u r problem with more details > -- > Regards > Sandeep > > On Tue, Feb 23, 2010 at 8:58 PM, Mukesh kumar wrote: > > when we call > > Intent intent = ne

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-02-24 Thread Mukesh kumar
Hi Bibek How emulator get the activity ="android.speech.action.RECOGNIZE_SPEECH" because we use this activity to "speech to text" conversion in program Please help me: how this activity find in Android throw emulator. Exception: android.content.ActivitNotFoundException:No Activity Found to ha

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-02-24 Thread Mukesh kumar
Hi sandeep Problem: When we run this program. then after click the button(voice Recognition) Show message box with exception what we catch Exception: android.content.ActivitNotFoundException:No Activity Found to handle Intent{action=android.speech.action.RECOGNIZE_SPEECH} Please give me solutio

[android-developers] Re: "android.speech.action.RECOGNIZE_SPEECH" activity not found

2010-02-24 Thread Mukesh kumar
how the emulator get activity: "android.speech.action.RECOGNIZE_SPEECH" when we use code : Intent intent = new Intent("android.speech.action.RECOGNIZE_SPEECH"); startActivityForResult(intent, 0); it throw exception: Exception: android.content.ActivitNotFoundException:No Activity Found to handl