The Fused Location Provider intelligently manages the underlying location technology and gives you the best location according to your needs.
Questions tagged [fusedlocationproviderapi]
436 questions
0
votes
3 answers
Error fusedLocationApi requestLocationUpdates() non-activity class error
Hi I'm new in stackoverflow. I hope someone Know how to do something in Android to call method requestLocationUpdates using FusedLocationApi.
I'm trying to call in a non-activity class that implements the classes nedded to request location updates:…

Franks
- 81
- 1
- 4
0
votes
1 answer
Android Fused Location Provider API Not Returning Correct Address Everytime
I am a beginner in Android and I am building a location based app using Fused Location Provider Api. The application takes the coordinates and uses reverse geocoding to get the exact address which is needed for later use.But the problem is that it…

p.mathew13
- 920
- 8
- 16
0
votes
1 answer
Android Fused Location Api
I am using Fused Location Api for getting the latitude and longitude.It's mentioned in the documents that it uses GPS,Wifi and network to return the most accurate location of the user.I want to ask is that will it return the position if the GPS in…

p.mathew13
- 920
- 8
- 16
0
votes
1 answer
How does the fusedLocation API interval relate to turning off the GPS radio
Let's assume I'm used the Android fused location API to request highly accuracy location reporting. For example,
mLocationRequest = new LocationRequest();
mLocationRequest.setInterval(FASTEST_UPDATE_INTERVAL*2);
…

pbm
- 5,081
- 4
- 18
- 31
0
votes
2 answers
Cannot Access Network based location when location access is off
I am using google location api for fetching location. issue I'm facing is when the user turned the GPS off I'm not getting the Lcoation, as per this post says we can access Network based location even-though the GPS is turned off. but I'm not…

droidev
- 7,352
- 11
- 62
- 94
0
votes
1 answer
Android FusedLocationApi.requestLocationUpdates on the background: Stopping IntentService when app is terminated
I'm building an app that needs to keep location-tracking even when the app is in the background. Basically I am using play services' GoogleApiClient and LocationServices.FusedLocationApi.requestLocationUpdates method to invoke an IntentService.The…

BeFree
- 469
- 1
- 7
- 15
0
votes
2 answers
google play services location api sometimes give wrong location
My app use Google Play service API to get the user location and check if the device is inside or outside a particular area of 50 mt of radius.
The app use PRIORITY_HIGH_ACCURACY and a Interval of 1 minute.
So I create…

AleCat83
- 1,443
- 3
- 22
- 41
0
votes
0 answers
How to know which apps requested Fused Location API
I am using Fused Location API in my project to get the Location.
But the problem is my app doesn't appear in the Android Setting -> Location -> Recent Location Request's Section.
I was trying to know why this is happening?
After searching for a…

Srikrishna Nunna
- 11
- 1
0
votes
1 answer
BroadCast Receiver gps turn on/off message information
i created a broadcast receiver for get information gps turn on or off in android.
code used:
public class GpsReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
if…

José Rodrigues
- 1
- 1
0
votes
0 answers
Is it possible to change SettingsAPI Dialog box's text color?
I followed this to get the above pop up-
link to the code
Is there a way to change the text color of Learn more, CANCEL and TURN ON text fields?
Something like this-

SkyTreasure
- 854
- 2
- 13
- 23
0
votes
0 answers
Use Google Fused Location API in background to track distance
For a school project, i have to do an Android project (i am new to Android coding) where i must track the user location and record his travelled distance.
For this, i use the Google Fused Location API.
I am having good results concerning the…

Whin3
- 675
- 2
- 9
- 27
0
votes
0 answers
Google Play services out of date.
I'm working on an Android app, that targets Android API versions : 17 --> 23, I extensively use the google play services for 2 core features :
GeoLoc : with FusedLocationApi
Google maps.
Now, I'm using the google play services version 8.1, it…
user1079425
0
votes
0 answers
FusedLocaionAPI Searching GPS signal stops
I have a service that when it creates and starts, initiates prerequisites of using FusedLocationAPI . buildGoogleApiClient() and createLocationRequest() with parameters that initiated by my getConfig() method from database.
This solution works great…

deuxdeux
- 63
- 9
0
votes
0 answers
FusedLocationProviderApi, PRIORITY_BALANCED_POWER_ACCURACY and GPS usage
I'm creating an app which tracks the location through FusedLocationProviderApi in a Foreground Service.
When I create LocationRequest with PRIORITY_BALANCED_POWER_ACCURACY and start listening for location updates, to my surprise GPS fires up (…

Nemanja Maksimovic
- 126
- 8
0
votes
3 answers
OnLocationChanged() Exception
I have developed an application using the Fused location provider. In the onConnected() method, I am requesting for location updates and the application logic will be initiated and onLocationChanged() is called.
Problem : onLocationChanged() method…

young_08
- 1,196
- 2
- 13
- 35