Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an Android service or app that is similar to the IOS significant-change location service?

The IOS significant-change location service would work nicely for my app to monitor location changes while preserving battery life.

Is there a similar service for Android or is there a third party app available?

like image 708
user726119 Avatar asked Apr 26 '11 20:04

user726119


People also ask

Does Android have significant locations?

Both Apple and Android have significantly expanded the use of location tracking as well as the number of apps that do too.

Can you change your iPhone location?

You might be asked to sign in. Tap Country/Region. Tap Change Country or Region. Tap your new country or region, then review the Terms & Conditions.

How does iPhone determine significant locations?

Significant Locations: Your iPhone and iCloud-connected devices will keep track of places you have recently been, as well as how often and when you visited them, in order to learn places that are significant to you. This data is end-to-end encrypted and cannot be read by Apple.


1 Answers

Use the Criteria class to specify your requirements.

Criteria criteria = new Criteria(); 
criteria.setAccuracy(Criteria.ACCURACY_COARSE);
criteria.setPowerRequirement(Criteria.POWER_LOW); 
...
String bestProvider = myLocationManager.getBestProvider(criteria, true);

Reference for Criteria http://developer.android.com/reference/android/location/Criteria.html

like image 172
aromero Avatar answered Nov 07 '22 00:11

aromero