The situation is very simple. I use an AsyncTask to retrieve a String from an HttpClient.
Now I need the String retrieved by the AsyncTask to call another method on that String,
therefore i need to make sure the AsyncTask has terminated before calling the other method.
How do I do this?
Thanks for any suggestion.