I have question which puzzles me.
Imagine I wanna do something in another thread, like fetching GPS/Location stuff, which as recommended in the SDK documents, must use a background thread.
So here is the question: What's the difference between
Creating a
Threadin background viaAsyncTaskANDCreating
Thread thread1 = new Thread(new Runnable()... and implementingrun()?