An activity I have starts an AsyncTask. What is the best way of getting the Activity notified that the AsyncTask is done. I can pass the Activity as a Context in, but I don't want the AsyncTask to know about the type of the Activity.
In .NET land I would subscribe to an event on the "AsyncTask". I didn't find a way to do that in Android.