Печать долготы и широты в текстовом поле Android - PullRequest
1 голос
/ 03 января 2012

Я искал и не могу найти никаких прямых тем относительно того, что я ищу.Я пытаюсь создать приложение для Android, которое набирает номер экстренной службы одним нажатием кнопки (которое у меня работает), но не может отобразить местоположение (отображается в долготе и широте), я попытался сделать это с помощью Toast иEditText коробки.Я новичок в разработке для Android, поэтому хотел начать с чего-то более легкого, но часть LongLat вызывает проблемы.Любая помощь будет принята с благодарностью.

Ниже приведен код, который я подделывал, чтобы попытаться заставить его захватить Long и Lat, затем в другом файле я пытался использовать прослушиватель щелчков дляназначьте ее кнопке, чтобы при нажатии кнопки (в main.xml) она отображала Long и Lat либо в текстовом поле, либо в тосте.

import android.app.Activity;
import android.location.Location;
import android.location.LocationListener;
import android.os.Bundle;
import android.widget.TextView;
import android.content.Context;
import android.location.LocationManager;
import android.location.Criteria;



        public class EmergencyLocation extends Activity implements LocationListener {
            private TextView latituteField;
            private TextView longitudeField;
            private LocationManager locationManager;
            private String provider;

            /** Called when the activity is first created. **/
            @Override
            public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
                latituteField = (TextView) findViewById(R.id.TextView);
                longitudeField = (TextView) findViewById(R.id.long_lat);

                // Get the location manager
                locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
                // Define the criteria how to select the location provider -> use
                // default
                Criteria criteria = new Criteria();
                provider = locationManager.getBestProvider(criteria, false);
                Location location = locationManager.getLastKnownLocation(provider);

                // Initialise the location fields
                if (location != null) {
                    System.out.println("Provider " + provider + " has been selected.");
                    int lat = (int) (location.getLatitude());
                    int lng = (int) (location.getLongitude());
                    latituteField.setText(String.valueOf(lat));
                    longitudeField.setText(String.valueOf(lng));
                } else {
                    latituteField.setText("Provider not available");
                    longitudeField.setText("Provider not available");
                }
            }








        private void TextView() {
            // TODO Auto-generated method stub

        }


        @Override
        public void onLocationChanged(Location arg0) {
            // TODO Auto-generated method stub

        }


        @Override
        public void onProviderDisabled(String arg0) {
            // TODO Auto-generated method stub

        }


        @Override
        public void onProviderEnabled(String arg0) {
            // TODO Auto-generated method stub

        }


        @Override
        public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
            // TODO Auto-generated method stub

        }} 

Ответы [ 2 ]

2 голосов
/ 03 января 2012

Во-первых, вам нужно настроить LocationManager:

LocationManager manager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);

// set preferred provider based on the best accuracy possible
Criteria fineAccuracyCriteria = new Criteria();
fineAccuracyCriteria.setAccuracy(Criteria.ACCURACY_FINE);
String preferredProvider = manager.getBestProvider(fineAccuracyCriteria, true);

Теперь вам нужно создать LocationListener. В этом случае он вызывает метод updateLocation():

LocationListener listener = new LocationListener() {
        public void onLocationChanged(Location location) {
            // called when a new location is found by the network location provider.
            updateLocation(location);
        }

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

        public void onProviderEnabled(String provider) {}

        public void onProviderDisabled(String provider) {}
    };

EDIT:

Затем вы должны зарегистрировать слушателя на вашем LocationManager (и попытаться получить кэшированное местоположение):

manager.requestLocationUpdates(preferredProvider, 0, 0, listener);
// get a fast fix - cached version
updateLocation(manager.getLastKnownLocation());

И, наконец, метод updateLocation():

private void updateLocation(Location location) {
    if (location == null)
        return;

    // save location details
    latitude = (float) location.getLatitude();
    longitude = (float) location.getLongitude();        
}

EDIT2:

ОК, только что увидел ваш код. Для того, чтобы это сработало, просто переместитесь на несколько битов:

/** Called when the activity is first created. **/
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    latituteField = (TextView) findViewById(R.id.TextView);
    longitudeField = (TextView) findViewById(R.id.long_lat);

    // Get the location manager
    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    // Define the criteria how to select the location provider -> use
    // default
    Criteria criteria = new Criteria();
    provider = locationManager.getBestProvider(criteria, false);
    locationManager.requestLocationUpdates(provider, 0, 0, this);
    Location location = locationManager.getLastKnownLocation(provider);
    onLocationChanged(location);
}

@Override
protected void onDestroy() {
    super.onDestroy();
    locationManager.removeUpdates(this);
}

@Override
public void onLocationChanged(Location location) {
   if (location != null) {
       System.out.println("Provider " + provider + " has been selected.");
       int lat = (int) (location.getLatitude());
       int lng = (int) (location.getLongitude());
       latituteField.setText(String.valueOf(lat));
       longitudeField.setText(String.valueOf(lng));
   } else {
       latituteField.setText("Provider not available");
       longitudeField.setText("Provider not available");
   }
}

Надеюсь, это поможет!

0 голосов
/ 03 января 2012

Довольно просто. Я использую locationListener в качестве атрибута внутри Location класса. Вот как я это делаю:

package com.rifsoft.android.helper.location;

import com.rifsoft.android.helper.IListener;

import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;

public class Location implements IListener
{
  public final static int IDX_LATITIDE = 0;
  public final static int IDX_LONGITUDE = 1;

  private double[] lastLocation =  {0.0, 0.0};  
  private LocationManager locationManager = null;
  private ILocation activity = null;

  private LocationListener locationListener  = new LocationListener()
  {
      public void onLocationChanged(android.location.Location location) 
      {
        // TODO: http://developer.android.com/guide/topics/location/obtaining-user-location.html#BestEstimate
        lastLocation[IDX_LATITIDE] = location.getLatitude();
        lastLocation[IDX_LONGITUDE] = location.getLongitude();
        activity.onLocationChange();
      }

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

      public void onProviderEnabled(String provider) {}

      public void onProviderDisabled(String provider) {}
  };

  /**
   * Constructor, needs LocationManager
   * @param activity Activity that will receive the notification when location has changed
   * @param locationManager LocationManager
   */
  public Location(final ILocation act, LocationManager lm) throws LocationException
  {
    if (lm == null)
    {
      throw new LocationException(LocationException.ERR_NULL_LOCATION_MANAGER);
    }

    if (act == null)
    {
      throw new LocationException(LocationException.ERR_NULL_ILOCATION);
    }

    locationManager = lm;
    activity = act;

    registerListener();   

    android.location.Location lastCachedLocation = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
    if (lastCachedLocation != null)
    {
      lastLocation[IDX_LATITIDE] = lastCachedLocation.getLatitude();
      lastLocation[IDX_LONGITUDE] = lastCachedLocation.getLatitude();
    }
  }

  /**
   * Retuns last known most accurate location as latitude, longitude
   * @return Latitude, Longitude
   */
  public double[] getLastLocation()
  {
    return lastLocation;
  }

  @Override
  public void registerListener() 
  {   
    locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);   
    locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);   
  }

  @Override
  public void unRegisterListener() 
  {
    locationManager.removeUpdates(locationListener);    
  }
}

Тогда активность .onLocationChange () выглядит как

  public void onLocationChange() 
  {
    locationUpdated = true;

    double[] coordinates = location.getLastLocation();

    EditText lon = (EditText) activity.findViewById(R.id.longitude_value);
    lon.setText(String.valueOf(coordinates[Location.IDX_LONGITUDE]));

    EditText lat = (EditText) activity.findViewById(R.id.latitude_value);   
    lat.setText(String.valueOf(coordinates[Location.IDX_LATITIDE]));
  }
...