I have an IntentService that downloads some files. The problem is that I create a Toast inside the IntentService like this
Toast.makeText(getApplicationCont
For people developing in Xamarin studio, this is how its done there:
Handler handler = new Handler (); handler.Post (() => { Toast.MakeText (_Context, "Your text here.", ToastLength.Short).Show (); });