1

我在我的 HTC Desire S 上使用 GPS 并制作了一个非常小的地图应用程序。它工作得很好,直到我偶然发现了这个应用程序。我再次卸载它,现在我的 GPS 不再工作了。我知道有固定时间,但是

locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)

总是返回 true,并且应用程序不再请求位置更新。

GPSMapTrackerService.java:

package net.hobbycoder.android.gpsmap;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.widget.Toast;

public class GPSMapTrackerService extends Service implements LocationListener {

    private Resources res;
    private FileManager fileManager;
    private LocationManager locManager;
    private boolean showNotification = true;

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

    @Override
    public void onCreate() {
        res = getResources();
        fileManager = new FileManager(getApplicationContext());
        locManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
        //GPS on?
        if(!locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
            Toast.makeText(this, res.getString(R.string.noGPSText), Toast.LENGTH_LONG).show();
            showNotification = false;
            stopSelf();
        }
        else{
            showNotification = true;
        }
    }

    @Override
    public void onStart(Intent intent, int startID) {
        locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
        if(showNotification)
            Toast.makeText(this, res.getString(R.string.startedText), Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onDestroy() {
        locManager.removeUpdates(this);
        if(showNotification)
            Toast.makeText(this, res.getString(R.string.stoppedText), Toast.LENGTH_SHORT).show();
    }

    public void onLocationChanged(Location loc) {
        fileManager.write(loc.getLatitude() + ":" + loc.getLongitude() + ";");
    }

    public void onProviderDisabled(String provider) {

    }

    public void onProviderEnabled(String provider) {

    }

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

    }
}

似乎位置卡住了,因为我的时钟小部件下的文字说我在纽约,但我在德国。

此应用程序也无法正常工作,因此问题不应该出现在我的代码中。

希望任何人都可以提供帮助:(

4

2 回答 2

0

尝试使用GPS Status & Toobox应用程序清除 GPS 数据并重新下载。我目前没有该应用程序,但它位于菜单选项中。

于 2012-07-18T19:02:52.443 回答
0

Service.onStart()已弃用,如果您阅读首选的Service.onStartCommand()文档,您会发现根据您的 API,onStart() 甚至可能不会被调用。

尝试将 onStart() 更改为 onStartCommand():

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
    if(showNotification)
        Toast.makeText(this, res.getString(R.string.startedText), Toast.LENGTH_SHORT).show();
}

此外,您永远不会在任何覆盖的方法中调用该super函数。更新所有这些(除了 onBind() 什么都不做):

@Override
public void onCreate() {
    super.onCreate();
    ...

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
    if(showNotification)
        Toast.makeText(this, res.getString(R.string.startedText), Toast.LENGTH_SHORT).show();
    return super.onStartCommand(intent, flags, startId);
}

// etc, etc
于 2012-07-18T18:45:14.317 回答