Android目标位置

时间:2012-04-15 06:53:28

标签: android location

我无法为指南针应用设置目标位置。基本上它指向一个设定的目的地(而不是北方)。我已经弄清楚了所有数学,但是,每当我尝试执行destinationObj.setLatittude()或setLongitutde()时,app力就会关闭。

奇怪的是,如果我将destinationObj set.Lat/Long放在位置监听器中,那将覆盖GPS位置,就像应用程序只能识别一个位置而不是两个位置一样。

请指导。

谢谢,

这是我的代码:

import android.app.Activity;
...

public class CompassActivity extends Activity {

LocationManager locationManager;
Location LocationObj, destinationObj;

    private SensorEventListener mListener = new SensorEventListener() {
        public void onSensorChanged( SensorEvent event ) {

            if ( LocationObj == null ) return;

            ...bearing calculation...

                float bearing = LocationObj.bearingTo(destinationObj);

            rotateImageView( needle, R.drawable.needle, direction);

        }

        public void onAccuracyChanged(Sensor sensor, int accuracy) {
        }
    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        needle = (ImageView)findViewById(R.id.needle);
        log = (TextView)findViewById(R.id.log);
        lat = (TextView)findViewById(R.id.lat);

        **destinationObj.setLatitude(20);
        destinationObj.setLongitude(30);**

        LocationManager mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
        LocationListener locationListener = new LocationListener() {
            public void onLocationChanged(Location location) {
              LocationObj = location;
              log.setText(Double.toString(location.getLongitude()));
              lat.setText(Double.toString(location.getLatitude()));
            }
            public void onStatusChanged(String provider, int status, Bundle extras) {}
            public void onProviderEnabled(String provider) {}
            public void onProviderDisabled(String provider) {}
          };

        mlocManager.requestLocationUpdates( LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);

        mSensorManager = (SensorManager)getSystemService(Context.SENSOR_SERVICE);
        mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);
    }

    private void rotateImageView( ImageView imageView, int drawable, float rotate ) {
       ...image rotation...
    }


    @Override
    protected void onResume()
    {
        super.onResume();
        mSensorManager.registerListener(mListener, mSensor,
                SensorManager.SENSOR_DELAY_GAME);
    }

    @Override
    protected void onStop()
    {
        mSensorManager.unregisterListener(mListener);
        super.onStop();
    }

}

1 个答案:

答案 0 :(得分:0)

因为目标Obj仍未初始化且为空

在此之前..

 destinationObj.setLatitude(20);

 destinationOnj=new Location(NETWORK_PROVIDER);