android 停止service
时间: 2023-12-27 20:02:30 浏览: 86
Android停止Service的例程
要停止 Android 中的 Service,你可以使用 `stopService()` 方法。以下是停止 Service 的步骤:
1. 在你的 Activity 或 Fragment 中,获取到对应的 Service 对象。
2. 调用 `stopService()` 方法,将 Service 对象作为参数传递进去。
下面是一个示例:
```java
// 停止 Service
Intent serviceIntent = new Intent(this, YourService.class);
stopService(serviceIntent);
```
确保将 `YourService` 替换为你自己的 Service 类名。这样就可以停止运行中的 Service。
阅读全文