如何从一个活动启动Android服务并在另一个活动中停止服务?

时间:2011-09-17 11:29:19

标签: android service

我需要从活动中启动Android服务并停止活动并停止其他活动的服务。

任何帮助将不胜感激

2 个答案:

答案 0 :(得分:28)

服务骨架:

public class MyService extends Service {
    public static final String TAG = "MyServiceTag";
    ...
}

这是开始活动的一部分:

processStartService(MyService.TAG);

private void processStartService(final String tag) {
    Intent intent = new Intent(getApplicationContext(), MyService.class);
    intent.addCategory(tag);
    startService(intent);
}

这是停止活动的一部分:

processStopService(MyService.TAG);

private void processStopService(final String tag) {
    Intent intent = new Intent(getApplicationContext(), MyService.class);
    intent.addCategory(tag);
    stopService(intent);
}

答案 1 :(得分:-2)

如何启动/停止Android服务?

startService(intent)stopService(intent)

可以从任何活动中调用这些函数。

如何停止活动? - 据此我明白你需要离开这个活动。函数调用

finish()

会从活动堆栈中删除活动。