如何从一个活动启动一个Android的服务,并在其他活动停止服务? [英] How to start a android service from one activity and stop service in another activity?

查看:201
本文介绍了如何从一个活动启动一个Android的服务,并在其他活动停止服务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

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);
}

这篇关于如何从一个活动启动一个Android的服务,并在其他活动停止服务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆