0

我正在尝试结束由我的片段启动的服务。

我试图在 onDestroyView 中结束服务,但是当我切换片段时我的服务停止了。当我的应用程序关闭时,我需要它停止。

如何在包含片段的活动的 onDestroy 中停止服务?

4

1 回答 1

0
@Override
protected void onDestroy() {
    super.onDestroy();
    stopService(new Intent(this, YourService.class));

}
于 2013-06-19T09:44:06.987 回答