tags:

views:

22

answers:

1

I am using Text to Speech.

When I set the language using

mTts = new TextToSpeech(this, this);
mTts.setLanguage(Locale.UK)

I always get an American accent.

The only way to fix this is by changing the default language setting in the Android system. What am I doing wrong?

A: 

SOLVED

Instead of putting it inside onActivityResult() put it inside onInit(int status) and it works

jax