Android Service 通信

参考资料:Android 中 Service 通信

GitHub演示项目:Android Service 通信

1. 创建一个 Service

1.1 创建 Service 类

新建一个类,这里取名 MyService,继承自 Service

public class MyService extends Service {
    // 构造方法
    public MyService() {
    }

    // 绑定服务时,执行该方法
    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }

    // 当服务开启时,调用的方法
    @Override
    public void onCreate() {
        super.onCreate();
    }

    // 当服务销毁时,调用的方法
    @Override
    public void onDestroy() {
        super.onDestroy();
    }

    /**
     * 当每次使用 startService 调用服务时,调用该方法(但一个服务同时只会存在一个实例)
     * 通过 Intent 传递的数据,也会在这里得到
     * 注意和 onCreate() 方法的区别:
     *      onCreate() 一个应用开启服务时,该方法只会调用一次
     *      onStartCommand() 只要使用 startService() 调用此服务,该方法就会执行一次
     */
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return super.onStartCommand(intent, flags, startId);
    }
}

1.2 在 AndroidManifest.xml 中注册该服务

<service
    android:name=".MyService"
    android:enabled="true"
    android:exported="true" >
</service>

在 AndroidManifest.xml 里 Service 元素的常见选项:

选项名 作用
android:name 服务类名
android:label 服务的名字,如果此项不设置,那么默认显示的服务名则为类名
android:icon 服务的图标
android:permission 申明此服务的权限,这意味着只有提供了该权限的应用才能控制或连接此服务
android:process 表示该服务是否运行在另外一个进程,如果设置了此项,那么将会在包名后面加上这段字符串表示另一进程的名字
android:enabled 如果此项设置为 true,那么 Service 将会默认被系统启动,不设置默认此项为 false
android:exported 表示该服务是否能够被其他应用程序所控制或连接,不设置默认此项为 false

2. 开启|关闭 Service

2.1 通过 startService() | stopService 方法开启和关闭服务

开启服务代码如下:

// 新建一个 Intent
Intent intent = new Intent(this, MyService.class);
// 这里可以给 Intent 里面放置数据,数据对应在 Service 类中 onStartCommand 方法参数 Intent 可以得到
// 开启服务
startService(intent);

关闭服务代码如下:

// 新建一个 Intent
Intent intent = new Intent(this, MyService.class);
// 关闭服务
stopService(intent);

2.2 通过 bindService() | unbindService() 方法开启和关闭服务

开启服务代码如下:

// 新建一个 Intent
Intent intent = new Intent(this, MyService.class);
// 开启服务
bindService(i, this, BIND_AUTO_CREATE);

此时,Service 要修改onBind() 方法,返回一个实现 IBinder 接口的对象:

@Override
public IBinder onBind(Intent intent) {
    // Android 官方提供的 Binder 对象,不过为了实现 Service 和 Activity 互相通信,之后我们要自己重新实现一个类
    return new Binder();
}

并且,Activity 中需要实现 ServiceConnection 接口中 onServiceConnected() 和 onServiceDisconnected() 两个方法,这两个方法也是 Service 和 Activity 相互通信的关键,代码如下:

// 服务连接时,调用该方法,其中 IBinder 对象,就是上面 onBind() 方法中返回的对象
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
}

// 服务断开连接时,调用该方法
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    return super.onStartCommand(intent, flags, startId);
}

关闭服务代码如下:

unbindService(this);

3. Activity 和 Service 通信

3.1 Activity -> Service 通信

3.1.1 通过 Intent 通信

该方法是在开启服务时通过将数据放置到 Intent 中,传递给 Service,代码如下:

Intent intent = new Intent(this, MyService.class);
// 为服务传递数据
intent.putExtra("input", "data");
startService(intent);

Service 则可以从 onStartCommand(Intent intent, int flags, int startId) 参数 intent 可以得到相信数据, 代码如下:

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    String data = intent.getStringExtra("input");

    return super.onStartCommand(intent, flags, startId);
}

3.1.2 通过 Binder 通信

首先在 Service 类中新建一个内部类 Binder 并继承自 Android.os.Binder,在其中实现获得数据的方法,代码如下:

public class Binder extends android.os.Binder {
    public void setData(String d) {
        // data 为 Service 类的属性,在内部类中可以很方便的访问到外部的属性
        data = d;
    }
}

接着,在 Activity 中添加一个 Binder 属性,并通过 onServiceConnected(ComponentName name, IBinder service) 方法的参数对其进行赋值,代码如下:

private MyService.Binder binder = null;
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
    // 这里要强制类型转换一下
    binder = (MyService.Binder) service;
}

最后,便可以在想对 Service 属性修改的地方调用之前设置的 set 方法,代码如下:

if (binder != null) {
    binder.setData("123");
}

系统会在 Service 启动时,对 binder 进行赋值,成功启动后,便可以顺利地实现数据传递

3.2 Service -> Activity 通信

要想实现 Service 对 Activity 的通信,需要用到回调函数
首先在 Service 中新建一个接口,代码如下:

public static interface CallBack {
    void getServiceData(String data);
}

其次在 Service 中新建一个 CallBack 属性,并设置 set、get 方法,代码如下:

private CallBack callBack = null;
public void setCallBack(CallBack callBack) {
    this.callBack = callBack;
}

public CallBack getCallBack() {
    return callBack;
}

然后在需要传值的地方调用接口方法,代码如下:

// 需要传值的地方
if (callBack != null) {
    // 将需要传递的值作为参数
    callBack.getServiceData(data);
}

接着在 Activity 中为 Service 设置 CallBack 并实现 getServiceData() 方法,那么怎么获得 Service 对象呢?
我们仍然可以通过 Binder 来获得 Service 对象,在 Binder 类中添加如下方法:

public MyService getService() {
    return MyService.this;
}

在 Activity 中的 onServiceConnected() 方法中获得 Service 对象,并设置 CallBack,代码如下:

@Override
public void onServiceConnected(ComponentName name, IBinder service) {
    binder = (MyService.Binder) service;
    binder.getService().setCallBack(new MyService.CallBack() {
        @Override
        public void getServiceData(String data) {
            // 这里的 data 参数便是从 Service 传递过来的数据
        }
    });
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,671评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,442评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,524评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,623评论 1 275
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,642评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,584评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,953评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,621评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,865评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,608评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,698评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,378评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,958评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,940评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,173评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,419评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,425评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,404评论 25 707
  • HandlerThread是一个Android 已封装好的轻量级异步类。HandlerThread本质上是一个线程...
    kjy_112233阅读 1,262评论 0 9
  • 原文地址:Android Service完全解析,关于服务你所需知道的一切(上) 相信大多数朋友对Service这...
    AiPuff阅读 4,123评论 11 98
  • 折腾了一晚,天已经微微亮了。外面的活死人慢慢散去了。要不然我还真不知道能不能再冲过去了。还好,稍作休息,我就往超市...
    大黄蜂_a757阅读 332评论 0 1
  • 单位有一只狗,名叫旺业。 旺业10岁了,已是狗中的寿星,牙齿都快掉光了。 旺业原来是条流浪狗,它...
    流浪的桉树阅读 436评论 0 2