Blackberry - getLocation() method cannot be called from event thread

1.5k views Asked by At

I want to get the longitude and latitude of device. I used location api to get the longtitude and latitude the problem now I am facing is that I could not call the getLocation() method inside button click event. It throws an error as getLocation() method cannot be called from event thread.Can any one tell me how to solve this problem?

1

There are 1 answers

0
Richard On BEST ANSWER

You simply create another thread and call getLocation() from that thread. See the documentation for java.lang.Thread in the API documentation.