javaandroidmultithreading

How do I create a Thread Manager for an Android App?


I would like to know how to start and code a thread manager for my Android App. My app is going to fill a list with a network I/O and I have to manage threads for that.

I never done this before and I don't know where to start. I heard about Thread Pool and other stuff, but I'm quite confused. Could someone please help me make my way through ?

Thanks


Solution

  • AsyncTask already has a thread pool -- just use it.