I have an application that displays GPS coordinates in the form of a toast, but what I am trying to achieve is to save these co-ordinates, and display them in the next activity. The problem is.. I cant! I have been working on this for the past 4 days and am at a loss as to how to do so. If anyone has any suggestions I'd really appreciate it. Heres a look at the code:
public class GPSActivity extends Activity{
double longitude = 0;
double latitude = 0;
String s1 = "latitude";
String s2 = "longitude";
public Intent intent;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
intent = new Intent(this, Display.class);
/* Use the LocationManager class to obtain GPS locations */
LocationManager myLocationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationListener myLocationListener = new MyLocationListener();
myLocationManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, myLocationListener);} // end activity
/* Class My Location Listener */
public class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location loc) {
longitude = loc.getLatitude();
latitude = loc.getLongitude();
String text = "My current location is: " + "Latitud = " + loc.getLatitude() + "Longitud = " + loc.getLongitude();
Toast.makeText( getApplicationContext(), text, Toast.LENGTH_SHORT).show();
Bundle extras = new Bundle();
extras.putDouble("long", longitude);
extras.putDouble("lat", latitude);
intent.putExtras(extras);
startActivity(intent); }
@Override
public void onProviderDisabled(String provider){
Toast.makeText( getApplicationContext(), "Gps Disabled", Toast.LENGTH_SHORT ).show();
}
@Override
public void onProviderEnabled(String provider) {
Toast.makeText( getApplicationContext(), "Gps Enabled", Toast.LENGTH_SHORT).show();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras){
}
}} // End GPS activity