I am running a loop to SynthesizeToFile (in this example I will run the loop 10 times)
SynthesizeToFile
for(int i = 0; i< 10; i++) { textToSpeech.Synthesi
Place your UI changes within a RunOnUithread Action:
RunOnUithread
ie.
RunOnUiThread(() => { FloatingActionButton FAB = FindViewById<FloatingActionButton>(Resource.Id.fab); FAB.Visibility = ViewStates.Visible; });