如何从一个活动启动一个Android的服务,并在其他活动停止服务?并在、Android

2023-09-04 07:54:57 作者:过去不想再谈有缺憾也无妨

我要开始从活动的机器人服务和停止活动和其他活动的一站式服务。

I need to start an android service from activity and stop the activity and stop service from other activity.

任何帮助将AP preciated

any help will be appreciated

推荐答案

一个服务框架:

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

这是开始活动的一部分:

This is part of the starting activity:

processStartService(MyService.TAG);

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

这是停止活动的一部分:

This is part of the stopping activity:

processStopService(MyService.TAG);

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