Hi , Does every one has any experience using functions of location manager and could
guide me how to use loaction manager stop listening function .
When should we use it ? and what is the purpose?
I had problems , services crashed all the time when calling lm.stoplistening
Thanks.
guide me how to use loaction manager stop listening function .
When should we use it ? and what is the purpose?
I had problems , services crashed all the time when calling lm.stoplistening
B4X:
Sub Service_Create
lm.Initialize("location")
End Sub
sub Service_start
if condition then
lm.requestlocation
else
lm.stoplistening ' this seems to be improper use
end if
Thanks.