How can I switch between 3 languages /3 voices in a xamarin app. I found a lot of samples for android but no one for xamarin
i tried:
public void Speak(string text)
{
Plugin.TextToSpeech.TextToSpeech ttse = new Plugin.TextToSpeech.TextToSpeech();
CrossLocale localeen;
localeen.Country = "EN";
localeen.Language = "en_EN";
ttse.Speak(text, false, localeen);
}
The text is spoken with an italian voice and not as expected in english.