3

如果我点击“查找当前位置”按钮,它会显示“抱歉!强制关闭”。我想显示纬度和经度。GPS已在我的手机中打开。它仍然显示错误消息。我的代码有什么问题?

public class CurrentLocation extends Activity {

private static final long MINIMUM_DISTANCE_CHANGE_FOR_UPDATES = 1; // in Meters
private static final long MINIMUM_TIME_BETWEEN_UPDATES = 1000; // in Milliseconds

protected LocationManager locationManager;

protected Button retrieveLocationButton;
DBAdapter dbA = new DBAdapter (CurrentLocation.this);

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.curloc);
    Button bacButton = (Button)findViewById(R.id.bk);

    bacButton.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent explicitIntent = new Intent(CurrentLocation.this,ImageSearchActivity.class);
            startActivity(explicitIntent);
        }
    });

    retrieveLocationButton = (Button) findViewById(R.id.retrieve_location_button);
    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    locationManager.requestLocationUpdates(
            LocationManager.GPS_PROVIDER, 
            MINIMUM_TIME_BETWEEN_UPDATES, 
            MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
            new MyLocationListener()
    );

    retrieveLocationButton.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            showCurrentLocation();
        }
    });        

}    

protected void showCurrentLocation() {

    Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

    if (location != null) {
        String message = String.format("Current Location \n Longitude: %1$s \n Latitude: %2$s",
            location.getLongitude(), location.getLatitude());
        double longit = location.getLongitude();
        double latid = location.getLatitude();

        try {
            dbA.open();
            dbA.Insert(longit,latid);
            dbA.close();
        } catch (Exception e) {
            Toast.makeText(CurrentLocation.this,e.getMessage(), Toast.LENGTH_LONG).show();
        }
        Toast.makeText(CurrentLocation.this, message,Toast.LENGTH_LONG).show();
    }
}   

private class MyLocationListener implements LocationListener {

    public void onLocationChanged(Location location) {
        String message = String.format("New Location \n Longitude: %1$s \n Latitude: %2$s",
            location.getLongitude(), location.getLatitude());
        Toast.makeText(CurrentLocation.this, message, Toast.LENGTH_LONG).show();
        Toast.makeText(CurrentLocation.this, "Location Stored Successfully", Toast.LENGTH_LONG).show();
    }

    public void onStatusChanged(String s, int i, Bundle b) {

        Toast.makeText(CurrentLocation.this, "Provider status changed",
        Toast.LENGTH_LONG).show();
    }

    public void onProviderDisabled(String s) {
        Toast.makeText(CurrentLocation.this,"Provider disabled by the user. GPS turned off",
            Toast.LENGTH_LONG).show();
    }

    public void onProviderEnabled(String s) {
        Toast.makeText(CurrentLocation.this, "Provider enabled by the user. GPS turned on",
            Toast.LENGTH_LONG).show();
    }
}

} // end of class
4

1 回答 1

0

在函数中调用它说GetCurrentLocation

try {
    gps_enabled=lmGps.isProviderEnabled(LocationManager.GPS_PROVIDER);
} catch(Exception ex) {
}

try {
    lmGps.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,0,gpsLocationListener);
} catch(Exception ex){
}

像这样调用gpsLocationListenerthis 将返回您当前的位置并使用它做任何您想做的事情。

LocationListener gpsLocationListener=new LocationListener(){

    public void onLocationChanged(Location location){
        dGpsLat=location.getLatitude();
        dGpsLng=location.getLongitude();

        dLat=dGpsLat;
        dLng=dGpsLng;

        if(dLat>0 && dLng>0){ (...) }

        try {
            //SaveLocation();
        } catch (Exception e) {
            sResponse=e.toString();
            return;
        }
    }

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

};
于 2012-10-18T07:21:11.530 回答