I created a class extending Thread to retrieve user location through LocationManager in a non-ui thread. I implemented this as a tread because it has to be started on request and do its work just for a limited time. By the way, I had to add a Looper object in the thread, to be able to create the handler for the LocationManager (onLocationChanged).

This is the code:

public class UserLocationThread extends Thread implements LocationListener {
//...
public void run() {
    try {
        Looper.prepare();
        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this);
        Looper.loop();
        Looper.myLooper().quit();
    } catch (Exception e) {
        //...
    }
}

@Override
public void onLocationChanged(Location location) {
    locationManager.removeUpdates(this);
    //...
    handler.sendMessage(msg); //this is the handler for communication with father thread
}

//...}

I would like the thread to start, receive the user location data (in this case just one time), send the data to the main thread via a message to the handler, and then die. The problem is that in my case the thread does not die anymore, once the run method ended (that should be fine, because otherwise onLocationChanged would not receive the new locations).

But in this way, assuming that thread's stop and suspend methods are deprecated, what could be a good way, in this case at least, to make a thread with a looper die?

Thanks in advance ;)

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can explicitly quit from Looper's loop using Handler:

private Handler mUserLocationHandler = null;
private Handler handler = null;

public class UserLocationThread extends Thread implements LocationListener {    

 public void run() {
    try {
          Looper.prepare();
        mUserLocationHandler = new Handler();
        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this);
        Looper.loop();

    } catch (Exception e) {
        //...
    }
}


@Override
public void onLocationChanged(Location location) {
    locationManager.removeUpdates(this);
    //...
    handler.sendMessage(msg); 
    if(mUserLocationHandler != null){
        mUserLocationHandler.getLooper().quit();
    }
}
link|improve this answer
In my case "handler" is a Handler object passed to this thread from the calling thread, to be used to pass the collected data from one to another. Thus, I cannot call handler.getLooper().quit() because it refers to the activity thread, and not to the userLocationThread. Note that onLocationChanged is inside the new thread, and that Looper is required to let this callback method to be called when the locationManager receives a location. – j0nSn0w Jun 8 '11 at 12:50
I've updated the answer to reflect your case. – inazaruk Jun 8 '11 at 13:08
Thanks; that does the work. By the way, what's the difference between handler.getLooper().quit() and Looper.myLooper().quit()? I thought they work the same! – j0nSn0w Jun 8 '11 at 13:19
When you call Looper.myLooper() you get Looper associated with current thread. When you call handler.getLooper() you get Looper associated with specific handler. – inazaruk Jun 8 '11 at 13:44
But if the handler is associated with the same thread, the returned Looper should be the same, doesn't it? – j0nSn0w Jun 8 '11 at 13:58
show 4 more comments
feedback

Extend the AsyncTask class. It does all the threading and handling for you automatically.

link|improve this answer
1  
I don't thinks AsyncTask will work in this case as thread has to have Looper loop. – inazaruk Jun 8 '11 at 12:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.