1

我正在寻找有关全天检查 android 上的位置(大约每 15 分钟)并存储地理坐标的信息。当应用程序在后台时也会发生这种情况,而不仅仅是当应用程序在前台运行时。我不确定搜索词,我似乎找不到任何东西。任何人都可以建议搜索词来为我指明正确的方向吗?

非常感谢,凯文

编辑:

public class MyService extends Service
{
private static final String TAG = "Location";
private LocationManager mLocationManager = null;
private static final int LOCATION_INTERVAL = 1000;
private static final float LOCATION_DISTANCE = 10f;

private class LocationListener implements android.location.LocationListener{
Location mLastLocation;
public LocationListener(String provider)
{
    Log.i(TAG, "LocationListener " + provider);
    mLastLocation = new Location(provider);
}
public void onLocationChanged(Location location)
{
    Log.i(TAG, "onLocationChanged: " + location);
    mLastLocation.set(location);
}
public void onProviderDisabled(String provider)
{
    Log.i(TAG, "onProviderDisabled: " + provider);            
}

public void onProviderEnabled(String provider)
{
    Log.i(TAG, "onProviderEnabled: " + provider);
}

public void onStatusChanged(String provider, int status, Bundle extras)
{
    Log.i(TAG, "onStatusChanged: " + provider);
}
} 
LocationListener[] mLocationListeners = new LocationListener[] {
    new LocationListener(LocationManager.GPS_PROVIDER),
};
@Override
public IBinder onBind(Intent arg0)
{
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
Log.i(TAG, "onStartCommand");
super.onStartCommand(intent, flags, startId);       
return START_STICKY;
}
@Override
public void onCreate()
{
Log.i(TAG, "onCreate");
initializeLocationManager();
try {
    Thread LocThread = new Thread(new Runnable() {
        public void run() {
            mLocationManager.requestLocationUpdates(
                    LocationManager.GPS_PROVIDER, LOCATION_INTERVAL,     LOCATION_DISTANCE,
                    mLocationListeners[0]);
           }
        });

        try {
            LocThread.join();
        } catch (InterruptedException e) {
            Log.i("LocationError","Thread could not join");
            e.printStackTrace();
        }

} catch (java.lang.SecurityException ex) {
    Log.i(TAG, "fail to request location update, ignore", ex);
} catch (IllegalArgumentException ex) {
    Log.i(TAG, "gps provider does not exist " + ex.getMessage());
}
}
@Override
public void onDestroy()
{
Log.e(TAG, "onDestroy");
super.onDestroy();
if (mLocationManager != null) {
    for (int i = 0; i < mLocationListeners.length; i++) {
        try {
            mLocationManager.removeUpdates(mLocationListeners[i]);
        } catch (Exception ex) {
            Log.i(TAG, "fail to remove location listners, ignore", ex);
        }
    }
}
} 
private void initializeLocationManager() {
Log.e(TAG, "initializeLocationManager");
if (mLocationManager == null) {
    Thread LocThread = new Thread(new Runnable() {
        public void run() {
            mLocationManager = (LocationManager)     getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
           }
        });

        try {
            LocThread.join();
        } catch (InterruptedException e) {
            Log.i("LocationError","Thread could not join");
            e.printStackTrace();
        }

}
}
}
4

1 回答 1

0

您应该阅读有关如何在 android中获取位置信息以及如何使用 AlarmManager 定期安排服务的信息。

于 2013-08-28T08:04:02.433 回答