vote up 1 vote down star

I am trying to design my first Android application with the use of GPS, my logic of thinking is to first make sure the GPS aspect of my application work. My application is a drawable button that when clicked, alerts a Toast message of the longitude and latitude. I have tried to use the telnet localhost 5554 and then geo fix #number #number but nothing works. I have also tried DDMS way of sending GPS coordinates, nothing works.

My question is what exactly is the code equivalent to the geo fix and the DDMS way of sending coordinates. I have used Location, LocationManger and LocationListener but I am not sure which is the right choice. Could anyone explain to me what the code-equivalent just so I can get a better understanding of how to fix my application not working. Code is given, just in case if the error exists with the code

package com.forloney.tracker;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class TrackerActivity extends Activity implements OnClickListener {
double longitude, latitude;
String provider;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button button = (Button) findViewById(R.id.track);
    button.setOnClickListener(this);
    LocationManager location =(LocationManager)getSystemService(Context.LOCATION_SERVICE);
    Location loc = location.getLastKnownLocation(location.GPS_PROVIDER);
    updateWithNewLocation(loc);

  }

 private final LocationListener locationListener = new LocationListener() {
   public void onLocationChanged(Location location) {
     updateWithNewLocation(location);
   }

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

  private void updateWithNewLocation(Location l) {
  longitude = l.getLongitude();
  latitude = l.getLatitude();
  provider = l.getProvider();     
  }

    public void onClick(View v) { 
     Toast.makeText(this, "Your location is " + 
      longitude + " and " + latitude + " provided by: " + 
      provider, Toast.LENGTH_SHORT).show(); 

   }



}

Android has all privileges for GPS, sorry if this question is too long.

flag

1  
Could you please reformat your code? Start every line with 4 spaces, and it will all become one big block. – Daniel Yankowsky Oct 13 at 3:40
2  
What actual problem do you observe? Does it just fail to get any coordinates? Does it return dummy data? Does it throw an exception? – Daniel Yankowsky Oct 13 at 3:40
sorry about the formatting, wasnt clear on how to get it to work with the block of code. my problem that i observe is that when i click on the button it returns coordinates of 0 and 0, when i had sent dummy coordinates. It does not throw an exception :( – aforloney Oct 13 at 15:16

1 Answer

vote up 1 vote down check

Two things

1) Make latitude and longitude volatile

2) Try registering as a listener to the GPS location manager

location.requestLocationUpdates(LocationManager.GPS, 100, 1, locationListener);

That should get you callbacks sent to your locationListener object.

You can check out some sample Android GPS code here: http://www.devx.com/wireless/Article/43005

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.