Get user current and exact location using GPS

user3375734

For my new app, I need to get user location using GPS. To do so, I am using fusedLocationProviderApi.getLastLocation. Most of the time I am getting null.

But then I realized that all the APIs are intended to get notified on Location changed. But I want to take current exact location of user (consider user not moving) in the app.

How do I get the Location object so that I don't get null each time.

Raza Poonja

You can use this code in OnCreate() method to get location

// Acquire a reference to the system Location Manager
LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);

// Define a listener that responds to location updates
LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
      // Called when a new location is found by the network location provider.
      makeUseOfNewLocation(location);
    }

    public void onStatusChanged(String provider, int status, Bundle extras) {}

    public void onProviderEnabled(String provider) {}

    public void onProviderDisabled(String provider) {}
  };

// Register the listener with the Location Manager to receive location updates
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Get current location using GPS in Android

From Dev

Get current location name of user without using gps or internet but by using Network_Provider in android

From Dev

How to get user location, using GPS

From Dev

Android GPS get current location

From Dev

How to get Current Location(Street,City, etc,..) using gps in Android

From Dev

Get User Current location using CLLocation in IOS

From Dev

Get gps location using javascript

From Dev

How can I get the current GPS location?

From Dev

Get Current Phone Location without GPS and Internet

From Dev

Get Current Location 0 in marshmallow where below 23 API its give exact current Location using fused Location

From Dev

How to get user location without gps or wifi?

From Dev

How to get user location continuosly without GPS

From Dev

How to get Current GPS location(latitude-longitude) using Google API in Android App?

From Dev

Cant get current location (GPS) on google maps ios sdk

From Dev

How can i get current GPS location ? (not lastknown)

From Dev

Can't Get GPS Current Location's Latitude and Longitude Android

From Dev

Cant get current location (GPS) on google maps ios sdk

From Dev

How can I get accurate latitude/longitude of current GPS location?

From Dev

Get current location using json

From Dev

Getting Current Location using only GPS in Cordova/Phonegap

From Dev

How to get exact latitude and longitude using GPS tracker?

From Dev

How to get user's current location in Android

From Dev

How to get user current location with lat and long

From Dev

How to get user's current location in Android

From Dev

Current Location GPS Tracking Issue

From Dev

How to get the user's current city name without using the core location service?

From Dev

Can't get current user location using MapKit via Objective-C

From Dev

How to get a User's Current Location Using Google Geocode API and PHP

From Dev

How to get the user's current city name without using the core location service?

Related Related

  1. 1

    Get current location using GPS in Android

  2. 2

    Get current location name of user without using gps or internet but by using Network_Provider in android

  3. 3

    How to get user location, using GPS

  4. 4

    Android GPS get current location

  5. 5

    How to get Current Location(Street,City, etc,..) using gps in Android

  6. 6

    Get User Current location using CLLocation in IOS

  7. 7

    Get gps location using javascript

  8. 8

    How can I get the current GPS location?

  9. 9

    Get Current Phone Location without GPS and Internet

  10. 10

    Get Current Location 0 in marshmallow where below 23 API its give exact current Location using fused Location

  11. 11

    How to get user location without gps or wifi?

  12. 12

    How to get user location continuosly without GPS

  13. 13

    How to get Current GPS location(latitude-longitude) using Google API in Android App?

  14. 14

    Cant get current location (GPS) on google maps ios sdk

  15. 15

    How can i get current GPS location ? (not lastknown)

  16. 16

    Can't Get GPS Current Location's Latitude and Longitude Android

  17. 17

    Cant get current location (GPS) on google maps ios sdk

  18. 18

    How can I get accurate latitude/longitude of current GPS location?

  19. 19

    Get current location using json

  20. 20

    Getting Current Location using only GPS in Cordova/Phonegap

  21. 21

    How to get exact latitude and longitude using GPS tracker?

  22. 22

    How to get user's current location in Android

  23. 23

    How to get user current location with lat and long

  24. 24

    How to get user's current location in Android

  25. 25

    Current Location GPS Tracking Issue

  26. 26

    How to get the user's current city name without using the core location service?

  27. 27

    Can't get current user location using MapKit via Objective-C

  28. 28

    How to get a User's Current Location Using Google Geocode API and PHP

  29. 29

    How to get the user's current city name without using the core location service?

HotTag

Archive