java - open through intent settings window Google TTS -


is possible of intent open settings window speech synthesizer google, namely, choice of male or female voices "english (uk)"? image settings tts

i need right in settings select voice uk, not in general settings tts pro com.android.settings.tts_settings know not fit.

at moment have following code:

<preference                 android:summary="@string/pref_gender_voice_summary"                 android:title="@string/pref_gender_voice_title">                 <intent android:action="com.android.settings.tts_settings"></intent>             </preference> 

forgive me using google translator

yes.

    intent intent = new intent();      intent.setaction("com.android.settings.tts_settings");     intent.setflags(intent.flag_activity_new_task);      startactivity(intent); 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -