How to show up the settings for text to speech in my app?

后端 未结 4 945
生来不讨喜
生来不讨喜 2020-12-06 05:20

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 w

4条回答
  •  萌比男神i
    2020-12-06 06:20

    For ICS users Bandreid's call won't work anymore. You have to use this code:

    intent = new Intent();
    intent.setAction("com.android.settings.TTS_SETTINGS");
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    this.startActivity(intent);
    

提交回复
热议问题