Frage

I'm trying to get the user's current location via GPS capability,

Wrote a simple class that implements LocationListener

public class LocationManagerHelper implements LocationListener {

    private static double latitude;
    private static double longitude;

    @Override
    public void onLocationChanged(Location loc) {
        latitude = loc.getLatitude();
        longitude = loc.getLongitude();
    }

    @Override
    public void onProviderDisabled(String provider) { }

    @Override
    public void onProviderEnabled(String provider) { }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub

    }

    public static double getLatitude() {
        return latitude;
    }

    public static double getLongitude() {
        return longitude;
    }

}

and from a simple Action I'm accessing these longitude and latitude values

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    /** create a TextView and write Hello World! */
    TextView tv = new TextView(this);

    LocationManager mlocManager = 
                    (LocationManager) getSystemService(Context.LOCATION_SERVICE);

    LocationListener mlocListener = new LocationManagerHelper();

    mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
            mlocListener);

    if (mlocManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
            tv.append("Latitude:- " + LocationManagerHelper.getLatitude()
                    + '\n');
            tv.append("Longitude:- " + LocationManagerHelper.getLongitude()
                    + '\n');
    } else {
        tv.setText("GPS is not turned on...");
    }

    /** set the content view to the TextView */
    setContentView(tv);

But it always returns 0.0 as the result.Couldn't figure out the problem.

War es hilfreich?

Lösung

Your location update callbacks can't be fired until after onCreate() returns. If you initialize your lat/long variables to dummy values you will probably see you are printing those values.

Put some logging in your onLocationChanged so that you can see it's being fired, then read up a bit on how android applications work with regard to callbacks and updating the UI.

Also make sure your application has appropriate permissions in its manifest.

Andere Tipps

Location updates are in fact asynchronous. This means the API does not make your calling thread wait until a new location is available ; instead you register an observer object with a specific method (callback) that gets called whenever a new location gets computed.

In the Android LocationManager API, the observer is a LocationListener object, and the main callback for location updates is onLocationChanged()

Here is a diagram trying to explain this point (hope this helps rather than confuse you!)

Sequence diagram

So from your current code :

  • Declare mlocListener as a member of your Activity subclass
  • Add log outputs (Logcat lines) in your LocationListener implementation
  • Keep the rest of the code as is.
  • Add the right permissions in the manifest (FINE_LOCATION is needed for GPS) if not done so yet.
  • Try to have the phone connected to Internet and near a window, in order to get a quite fast GPS fix (should be ~30s).

Then launch the app and watch what happens in the logcat. you will see that status changes and location updates are not immediate after the initial request, thus explaining why your textview always shows (0.0,0.0).

More: http://developer.android.com/guide/topics/location/obtaining-user-location.html

After you get mLocListener - set the Criteria as shown below

String mlocProvider;
Criteria hdCrit = new Criteria();
hdCrit.setAccuracy(Criteria.ACCURACY_COARSE);
mlocProvider = mlocManager.getBestProvider(hdCrit, true);

and then use getLastKnownLocation

tv.append("\n\nLocations (starting with last known):");
Location currentLocation = mlocManager.getLastKnownLocation(mlocProvider);

Make sure you have these in your manifest
uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"
uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"

If you are using Emulator - In DDMS Perspective, look for Location Controls in Emulator Control tab. Then use Manual tab to set the Longitude and Latitude and click send - do this when your program is running you see a call to onLocationchanged. It is good idea to have log in onLocationChanged.

BTW, the parameters in requestLocationUpdates are set to "... 0,0..." - it will drain your battery - I have seen the phone go dead in 6 - 8 hours - change it to "...30000, 100..." - the first parameter in millisec and the other is in meters.

When you check it on emulator it will give 0.0. you have to pass the locations to emulator. you can pass this from C:\android-sdk_r06\android-sdk-windows\tools\ddms.bat file.

in ddms there is a tab named emulator controls. from there you can pass the locations to emulator. try this. hope it will work.

how to create app ?

Getting current location co-ordinates by action (get Location) Lat/long

Post the location to the webserver to be displayed on the map.(Submit) Clear button to clear the old location(Clear Location) or on (submit) it becomes clear (0.0.0.0)

Getting the current GPS location on Android http://developer.android.com/guide/topics/location/obtaining-user-location.html

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top