Hello,
I have a class called MyLocationListener where I have onLocationChanged, etc. to check for location updates. This is a separate class, and I have another class above that where I am doing some main calculations. I need to perform an action if the location is changed, but the code needs to be in the above class. This won't work because 1. onLocationChanged is void and 2. it takes in a loc parameter.
Is there a handy way to check if the location is changed in onLocationChanged that I can use in the above class? Please help!
p.s. If you did not really get what I said, can you please reply and I can rephrase it? I really need an answer for this question
I have a class called MyLocationListener where I have onLocationChanged, etc. to check for location updates. This is a separate class, and I have another class above that where I am doing some main calculations. I need to perform an action if the location is changed, but the code needs to be in the above class. This won't work because 1. onLocationChanged is void and 2. it takes in a loc parameter.
Is there a handy way to check if the location is changed in onLocationChanged that I can use in the above class? Please help!
p.s. If you did not really get what I said, can you please reply and I can rephrase it? I really need an answer for this question