5

I want to find latitude and longitude of my current location in android application.Its not on location changed .i got the latitude and longtitude value while location Changed.but i need the Current location of latitude and longitude.How to do this?

Mercy
  • 1,862
  • 9
  • 39
  • 75

2 Answers2

8

Read Android document for Obtaining User Location

rajpara
  • 5,203
  • 1
  • 29
  • 46
-2
Location location=manager.getLastKnownLocation(LocationManager.GPS_PROVIDER);//
location.getLatitude();
location.getLongitude();
Pascal MARTIN
  • 395,085
  • 80
  • 655
  • 663