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