Using AsyncTask to display data in ListView, but onPostExecute not being called
- by sumisu
I made a simple AsyncTask class to display data in ListView with the help of this stackoverflow question.
But the AsyncTask onPostExecute is not being called.
This is my code:
public class Start extends SherlockActivity {
// JSON Node names
private static final String TAG_ID = "id";
private static final String TAG_NAME = "name";
// category…