Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试结束由我的片段启动的服务。
我试图在 onDestroyView 中结束服务,但是当我切换片段时我的服务停止了。当我的应用程序关闭时,我需要它停止。
如何在包含片段的活动的 onDestroy 中停止服务?
@Override protected void onDestroy() { super.onDestroy(); stopService(new Intent(this, YourService.class)); }