我的OnLocationChanged有问题吗?

时间:2013-01-09 16:54:30

标签: java android gps location

我的位置记录器服务类没有向我提供有关我的位置的更新信息。我OnLocationChanged有什么问题吗?

public class LocationLoggerService extends Service implements LocationListener {

    Location location; // location
    String towers;

    // Declaring a Location Manager
    public LocationManager locationManager;

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public void onCreate() {
        ourLocation();
        Criteria crit = new Criteria();
        towers = locationManager.getBestProvider(crit, false);
        location = locationManager.getLastKnownLocation(towers);

        // Just af test here:
        String hej1 = Double.toString(location.getLatitude());
        String hej2 = Double.toString(location.getLongitude());
        Toast.makeText(this, "Fra Oncreate: /nLat: " + hej1 + "Long: " + hej2,
                Toast.LENGTH_LONG).show();

    }

    public void ourLocation()

    {
        // Find my current location
        locationManager = (LocationManager) this
                .getSystemService(Context.LOCATION_SERVICE);
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
                2000, 0, this);
    }

onLocationChanged方法没有为我提供新的信息。我尝试了一些测试(吐司),但它喜欢它不读这种方法。

@Override
public void onLocationChanged(Location loc) {
    if (loc != null) {
        // Testing the position
        String hej3 = Double.toString(loc.getLatitude());
        String hej4 = Double.toString(loc.getLongitude());
        Toast.makeText(this, "loc: " + "Lat: " + hej3 + "Long: " + hej4,
                Toast.LENGTH_LONG).show();
    }
}

    @Override
    public void onProviderEnabled(String s) {
    }

    @Override
    public void onProviderDisabled(String s) {
    }

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

    @Override
    public void onDestroy() {

        // TODO Auto-generated method stub

        super.onDestroy();

        Toast.makeText(this, "MyAlarmService.onDestroy()", Toast.LENGTH_LONG)
                .show();

    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        // this service will run until we stop it

        return START_STICKY;
    }

}

我的清单

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_GPS" />


<service
        android:name="LocationLoggerService"
        android:enabled="true"
        android:exported="false"
        android:label="LocationLoggerService" />
</application>

1 个答案:

答案 0 :(得分:0)

尝试更改下面的代码并重试,直接从onLocationChanged回调方法获取位置对象...我希望您正在测试此功能。 location ojbect将包含最新的纬度和经度。

@Override
public void onLocationChanged(Location location) {


    // Testing onLocationChanged:
    String hej1 = Double.toString(location.getLatitude());
    String hej2 = Double.toString(location.getLongitude());
    Toast.makeText(this, "Location: "+"Lat: " + hej1 + "Long: " + hej2,
            Toast.LENGTH_LONG).show();

    String hej3 = Double.toString(loc.getLatitude());
    String hej4 = Double.toString(loc.getLongitude());
    Toast.makeText(this, "loc: " +"Lat: " + hej3 + "Long: " + hej4,
            Toast.LENGTH_LONG).show();

}
相关问题