我无法阻止我的服务。
我有两项服务。 Service1使用startService(intent)启动Service2。 我用stopSelf()停止service1; 然后我在Service2中做了一些事情并再次启动Service1并停止Service2。
所以他们总是重新开始。
首次启动后,服务的行为会有所不同。
我写了一些日志消息,我可以看到这些信息是log cat中的倍数。
我还尝试使用stopService停止其他activty的onStartCommand中的活动。 (在Service1的onStartCommand中,我调用stopService service2)
以下是我的代码的一部分:
服务1:
public class Service1 extends Service{
private int startId;
@Override
public void onCreate(){
super.onCreate();
}
private void doSomething(){
...
...
Intent intent = new Intent(getApplicationContext(), Service2.class);
startService(intent);
this.stopSelf(startId);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
this.startId=startId;
Intent beaconIntent = new Intent(getApplicationContext(), Service2.class);
stopService(beaconIntent);
doSomething();
return START_STICKY;
}
}
服务2:
public class Service2 extends Service implements BeaconConsumer, RangeNotifier{
private BeaconManager mBeaconManager;
private int startId;
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Intent service1 = new Intent(getApplicationContext(), Service1.class);
stopService(service1);
mBeaconManager = BeaconManager.getInstanceForApplication(this);
mBeaconManager.getBeaconParsers().add(new BeaconParser().setBeaconLayout("s:0-1=feaa,m:2-2=00,p:3-3:-41,i:4-13,i:14-19"));
mBeaconManager.bind(this);
this.startId = startId;
return START_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
mBeaconManager.unbind(this);
}
@Override
public void onBeaconServiceConnect() {
region = new Region("all-beacons-region", null, null, null);
try {
mBeaconManager.startRangingBeaconsInRegion(region);
} catch (RemoteException e) {
e.printStackTrace();
}
mBeaconManager.addRangeNotifier(this);
}
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
if(!beacons.isEmpty()){
doSomething...
...
...
Intent intent = new Intent(getApplicationContext(), Service1.class);
startService(intent);
this.stopSelf();
}
}
}
我做错了什么?
编辑:我没有提到,我正在使用altbeacon库。我认为这不会产生任何影响。 但是,当我查看启动应用程序时正在运行的服务时,在我停止Service2之后,总会有两个altbeacon服务正在运行(BeaconIntentProcessor和BeaconService)。 也许他们多次调用我的服务。
答案 0 :(得分:0)
我得到了我做错的事。
问题不在于它自己的服务,而是altbeacon库。 BeaconManager更具体,即使服务被破坏,它仍然在后台搜索信标。 在日志中,服务似乎运行了多次。
解决方案不仅要解除绑定,还要停止测距并删除范围通知器。
mBeaconManager.stopRangingBeaconsInRegion(region);
mBeaconManager.removeAllRangeNotifiers();
mBeaconManager.unbind(this);