6

我有实现位置监听器的服务。现在我的问题是如何确保我的服务即使在睡眠模式下也能捕获位置。我已阅读有关警报管理器的信息

alarm.setRepeating(AlarmManager.RTC_WAKEUP, triggerAtMillis, intervalMillis, operation);

但如何使用它。这是我的代码..任何帮助将不胜感激..
我的服务

public class LocationCaptureService extends Service implements LocationListener {
public static int inteval;
java.sql.Timestamp createdTime;
LocationManager LocationMngr;

@Override
public void onCreate() {
    inteval=10*1000;

    startLocationListener(inteval);
}

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

private void startLocationListener(int inteval,String nwProvider) {
    this.LocationMngr = (LocationManager)getSystemService(Context.LOCATION_SERVICE);        
        this.LocationMngr.requestLocationUpdates(LocationManager.GPS_PROVIDER, inteval, 0, this);
}   

public void onLocationChanged(Location location) {
    String status="c",S=null;
    double longitude,lattitude,altitude;
    g_currentBestLocation = location;
    createdTime = new Timestamp (new java.util.Date().getTime());    
         longitude=location.getLongitude();
         lattitude=location.getLatitude();
         altitude=location.getAltitude();
         //use this
         }
  }                              
  public void onProviderDisabled(String provider) {}                            
  public void onProviderEnabled(String provider) {}                             
  public void onStatusChanged(String provider, int status, Bundle extras) {}

}

4

1 回答 1

5

如果您想确保您的服务不会被操作系统杀死/回收,您需要将其设为前台服务。默认情况下,所有服务都是后台服务,这意味着当操作系统需要资源时它们将被终止。有关详细信息,请参阅此文档

基本上,您需要Notification为您的服务创建一个并指出它是前台。这样,用户将看到一个持久通知,因此他知道您的应用程序正在运行,并且操作系统不会终止您的服务。

这是一个如何创建通知(在您的服务中执行此操作)并使其成为前台的简单示例:

Intent intent = new Intent(this, typeof(SomeActivityInYourApp));
PendingIntent pi = PendingIntent.getActivity(this, 0, intent,   PendingIntent.FLAG_UPDATE_CURRENT);

NotificationCompat.Builder builder = new NotificationCompat.Builder(this);

builder.setSmallIcon(Resource.Drawable.my_icon);
builder.setTicker("App info string");
builder.setContentIntent(pi);
builder.setOngoing(true);
builder.setOnlyAlertOnce(true);

Notification notification = builder.build();

// optionally set a custom view

startForeground(SERVICE_NOTIFICATION_ID, notification);

请注意,上面的示例是初步的,不包含取消通知的代码等。此外,当您的应用不再需要它应该调用的服务stopForeground以删除通知并允许您的服务被终止时,不这样做是浪费资源。

于 2013-04-11T07:40:28.730 回答