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 <[email protected]> wrote: > 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 handle > Intent{action=android.speech.action.RECOGNIZE_SPEECH} > > AndroidMainfest.xml > > <?xml version="1.0" encoding="utf-8"?> > <manifest xmlns:android="http://schemas.android.com/apk/res/android" > package="com.tutorial" > android:versionCode="1" > android:versionName="1.0"> > <application android:icon="@drawable/icon" android:label="@string/ > app_name"> > > <activity android:name=".SpeechActivtiy" android:label="@string/ > hello"> > <intent-filter> > <action android:name="android.intent.action.MAIN" /> > <category android:name="android.intent.category.LAUNCHER" /> > </intent-filter> > </activity> > </application> > <uses-sdk android:minSdkVersion="3" /> > > </manifest> -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

