Skip to main content

how to show up the voice recognition settings for in my app?



I am working on an android application in which i have implemented voice recognition and TTS. I have implemented TTS settings successfully by using following code:







intent = new Intent();

intent.setAction("com.android.settings.TTS_SETTINGS");

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

this.startActivity(intent);







Now I want to show system's "voice recognition settings" in my application to allow user to change language options etc. Please tell me how i can implement that.


Comments

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?