我正在开发一项需要在前台运行的服务,用户可以通过活动打开/关闭它。所以基本上,活动可能会被杀死,但只要用户没有停止服务,它就是安全的。
但是,我遇到了这个麻烦:如果服务打开,如何关闭它?这意味着,如果我的活动被杀死,然后重新启动,所以我没有得到启动服务意图的引用来调用stopService
.
以下是我当前的代码。如果用户在同一活动启动服务后调用 deactivate ,它工作正常。按钮状态始终正确,但是当我的活动由操作系统重新启动时,this.serviceIntent
为空。
protected boolean isServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if (SynchronizationService.class.getName().equals(service.service.getClassName())) {
return true;
}
}
return false;
}
@Override
protected void onResume() {
super.onResume();
this.togglingByCode = true;
this.butActivate.setChecked(this.isServiceRunning());
this.togglingByCode = false;
}
public void onActivateButtonClick(final boolean pIsChecked) {
if (this.togglingByCode) { return; }
if (pIsChecked) {
this.saveSettings();
this.serviceIntent = new Intent(this, SynchronizationService.class);
this.serviceIntent.putExtra(KEY_WEBSERVICE, this.txtWebService.getText().toString());
this.serviceIntent.putExtra(KEY_PASSWORD, this.txtPassword.getText().toString());
this.serviceIntent.putExtra(KEY_INTERVAL, Integer.parseInt(this.txtRefreshInterval.getText().toString()));
this.serviceIntent.putExtra(KEY_TIMEOUT, this.preferences.getInt(KEY_TIMEOUT, DEFAULT_TIMEOUT));
this.serviceIntent.putExtra(KEY_RETRY, this.preferences.getInt(KEY_RETRY, DEFAULT_RETRY));
this.startService(this.serviceIntent);
} else {
this.stopService(this.serviceIntent);
this.serviceIntent = null;
}
}
请告诉我如何正确停止服务。谢谢你。
Ps:我知道一个 make 的技巧serviceIntent
static
,但我对此感到不安全。如果没有其他方法,那么我将使用它。