tags:

views:

22

answers:

1

i have an application which uses the tts engine in android, now as the activity starts , i want to show to the users the settings present in the phone for the tts engine in which they can change the pitch, test the engine, etc which is already present in the emulator.So, how do i present to them this screen?

+1  A: 

Create an Intent to open the settings. I think it would be.

Intent i = new Intent(android.provider.Settings.ACTION_INPUT_METHOD_SETTINGS);
startActivityForResult(i); // to come back to your activity.
BrennaSoft
thanks, but this would give the user keyboard settings.I wanted to show this screen which is in Settings-> Text to Speech . Here is the screen shot : http://picasaweb.google.com/113593639172348814875/ScreenShots#5489006879503683298
pranay