Nic Hubbard
Nic Hubbard

Reputation: 42139

Android - Stopping Little Fluffy Location Service

I am testing out the really nice Little Fluffy Location Service (https://code.google.com/p/little-fluffy-location-library/), but I can't figure out how to stop the service. It seems to continue forever.

How can this service be stopped, and also started later?

Upvotes: 0

Views: 397

Answers (1)

Oscar Rico
Oscar Rico

Reputation: 389

try this.

LocationLibrary.stopAlarmAndListener(getApplicationContext());//To Stop Location Updates LocationLibrary.startAlarmAndListener(getApplicationContext());//To Start Location Updates

Upvotes: 1

Related Questions