详解Android中Service服务的基础知识及编写方法
首先,让我们确认下什么是service?
service就是android系统中的服务,它有这么几个特点:它无法与用户直接进行交互、它必须由用户或者其他程序显式的启动、它的优先级比较高,它比处于前台的应用优先级低,但是比后台的其他应用优先级高,这就决定了当系统因为缺少内存而销毁某些没被利用的资源时,它被销毁的概率很小哦。
那么,什么时候,我们需要使用service呢?
我们知道,service是运行在后台的应用,对于用户来说失去了被关注的焦点。这就跟我们打开了音乐播放之后,便想去看看图片,这时候我们还不想音乐停止,这里就会用到service;又例如,我们打开了一个下载链接之后,我们肯定不想瞪着眼睛等他下载完再去做别的事情,对吧?这时候如果我们想手机一边在后台下载,一边可以让我去看看新闻啥的,就要用到service。
service分类:
一般我们认为service分为两类,本地service和远程service。
1. 本地service:顾名思义,那就是和当前应用在同一个进程中的service,彼此之间拥有共同的内存区域,所以对于某些数据的共享特别的方便和简单;
2. 远程service:主要牵扯到不同进程间的service访问。因为android的系统安全的原因导致了我们在不同的进程间无法使用一般的方式共享数据。在这里android为我们提供了一个aidl工具。(android interface description language)android接口描述语言。在后边我们将会对其进行详细的介绍。
service启动流程
context.startservice() 启动流程:
context.startservice() -> oncreate() -> onstart() -> service running -> context.stopservice() -> ondestroy() -> service stop
如果service还没有运行,则android先调用oncreate(),然后调用onstart();
如果service已经运行,则只调用onstart(),所以一个service的onstart方法可能会重复调用多次。
如果stopservice的时候会直接ondestroy,如果是调用者自己直接退出而没有调用stopservice的话,service会一直在后台运行,该service的调用者再启动起来后可以通过stopservice关闭service。
所以调用startservice的生命周期为:oncreate --> onstart (可多次调用) --> ondestroy
context.bindservice()启动流程:
context.bindservice() -> oncreate() -> onbind() -> service running -> onunbind() -> ondestroy() -> service stop
onbind()将返回给客户端一个ibind接口实例,ibind允许客户端回调服务的方法,比如得到service的实例、运行状态或其他操作。这个时候把调用者(context,例如activity)会和service绑定在一起,context退出了,srevice就会调用onunbind->ondestroy相应退出。
所以调用bindservice的生命周期为:oncreate --> onbind(只一次,不可多次绑定) --> onunbind --> ondestory。
在service每一次的开启关闭过程中,只有onstart可被多次调用(通过多次startservice调用),其他oncreate,onbind,onunbind,ondestory在一个生命周期中只能被调用一次。
service生命周期:
和activity相比,service的生命周期已经简单的不能再简单了,只有oncreate()->onstart()->ondestroy()三个方法。
activity中和service有关的方法:
- startservice(intent intent):启动一个service
- stopservice(intent intent) :停止一个service
如果我们想使用service中的一些数据或者访问其中的一些方法,那么我们就要通过下面的方法:
- public boolean bindservice(intent intent, serviceconnection conn, int flags) ;
- public void unbindservice(serviceconnection conn);
intent是跳转到service的intent,如 intent intent = new intent(); intent.setclass(this,myservice.class);
/** * 链接到service时触发。 * name 链接到service组件的名称 * service 在service中调用onbund时返回的ibinder,主要用来进行信息的交流 */ @override public void onserviceconnected(componentname name, ibinder service) { log.i("通知", "链接成功!"); mybinder binder = (mybinder)service; myservice myservice = binder.getmyservice(); int count = myservice.getcount(); log.i("通知", "count="+count); }
使用service的步骤:
第一步:我们要继承service类,实现自己的service。
如果想要访问service中的某些值,我们通常会提供一个继承了binder的内部类,通过onbund()方法返回给service请求。这里实际上巧妙的利用了内部类能够访问外部类属性的特点。
第二步:在androidmanifest.xml中进行注册,如:
<!-- service配置开始 --> <service android:name="myservice"></service> <!-- service配置结束 -->
第三步:在activity中进行启动、绑定、解绑或者停止service。
(很多书上说,service与用户是不能交互的,其实这话很不正确,我们完全可以通过activity与service进行交互嘛!我觉得,确切的说法应该是service与用户不能进行直接的交互)。
例子
下边提供一个调用service听音乐的例子:
activity代码:
package cn.com.chenzheng_java; import cn.com.chenzheng_java.myservice.mybinder; import android.app.activity; import android.content.componentname; import android.content.intent; import android.content.serviceconnection; import android.os.bundle; import android.os.ibinder; import android.util.log; import android.view.view; import android.view.view.onclicklistener; import android.widget.button; /** * @description 对service进行简单的应用 */ public class serviceactivity extends activity implements onclicklistener{ private button button_start ; private button button_bind ; private button button_destroy ; private button button_unbind; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.service); button_start = (button) findviewbyid(r.id.button1_service); button_bind = (button) findviewbyid(r.id.button2_service); button_destroy = (button) findviewbyid(r.id.button3_service); button_unbind = (button) findviewbyid(r.id.button4_service); button_start.setonclicklistener(this); button_bind.setonclicklistener(this); button_destroy.setonclicklistener(this); button_unbind.setonclicklistener(this); } private class myserviceconnection implements serviceconnection{ /** * 链接到service时触发。 * name 链接到service组件的名称 * service 在service中调用onbund时返回的ibinder,主要用来进行信息的交流 */ @override public void onserviceconnected(componentname name, ibinder service) { log.i("通知", "链接成功!"); mybinder binder = (mybinder)service; myservice myservice = binder.getmyservice(); int count = myservice.getcount(); log.i("通知", "count="+count); } @override public void onservicedisconnected(componentname name) { log.i("通知", "链接未成功!"); } } private myserviceconnection serviceconnection = new myserviceconnection(); @override public void onclick(view v) { if(v == button_start){ intent intent = new intent(); intent.setclass(getapplicationcontext(), myservice.class); startservice(intent); } if(v == button_bind){ intent intent = new intent(); intent.setclass(getapplicationcontext(), myservice.class); bindservice(intent,serviceconnection , bind_auto_create); } if(v==button_destroy){ intent intent = new intent(); intent.setclass(getapplicationcontext(), myservice.class); stopservice(intent); } if(v==button_unbind){ unbindservice(serviceconnection); } } }
继承service的类:
package cn.com.chenzheng_java; import android.app.service; import android.content.intent; import android.media.mediaplayer; import android.os.binder; import android.os.ibinder; import android.util.log; /** * @description 实现自己的service * @author chenzheng_java * @since 2011/03/18 */ public class myservice extends service { mediaplayer mediaplayer; /** * 当用户调用bindservice方法时会触发该方法 返回一个ibinder对象,我们可以通过该对象,对service中 的某些数据进行访问 */ @override public ibinder onbind(intent intent) { log.i("通知", "service绑定成功!"); return new mybinder(); } @override public void oncreate() { log.i("通知", "service创建成功!"); mediaplayer = mediaplayer.create(this, r.raw.aiweier); mediaplayer.setlooping(false); super.oncreate(); } @override public void ondestroy() { mediaplayer.stop(); log.i("通知", "service销毁成功!"); super.ondestroy(); } @override public void onrebind(intent intent) { log.i("通知", "service重新绑定成功!"); super.onrebind(intent); } @override public void onstart(intent intent, int startid) { mediaplayer.start(); log.i("通知", "service start成功!"); super.onstart(intent, startid); } @override public boolean onunbind(intent intent) { mediaplayer.stop(); log.i("通知", "service解绑成功!"); return super.onunbind(intent); } private int count = 100; public int getcount() { return count; } public void setcount(int count) { this.count = count; } public class mybinder extends binder { /** * @return 返回一个个人的service对象 */ myservice getmyservice() { return myservice.this; } } }
service.xml代码:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <button android:text="启动" android:id="@+id/button1_service" android:layout_width="wrap_content" android:layout_height="wrap_content"></button> <button android:text="绑定" android:id="@+id/button2_service" android:layout_width="wrap_content" android:layout_height="wrap_content"></button> <button android:text="销毁" android:id="@+id/button3_service" android:layout_width="wrap_content" android:layout_height="wrap_content"></button> <button android:text="解绑" android:id="@+id/button4_service" android:layout_width="wrap_content" android:layout_height="wrap_content"></button> </linearlayout>
androidmanifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cn.com.chenzheng_java" android:versioncode="1" android:versionname="1.0"> <uses-sdk android:minsdkversion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name="serviceactivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <!-- service配置开始 --> <service android:name="myservice"></service> <!-- service配置结束 --> </application> </manifest>
最终效果图:
上一篇: Android编程之简单启动画面实现方法
下一篇: 三层+存储过程实现分页示例代码
推荐阅读
-
详解Android中Service服务的基础知识及编写方法
-
详解Android应用中preference首选项的编写方法
-
详解Android应用中ListView列表选项栏的编写方法
-
详解Android应用中preference首选项的编写方法
-
详解Android中Service服务的基础知识及编写方法
-
详解Android应用开发中Intent的作用及使用方法
-
详解Android中App的启动界面Splash的编写方法
-
详解Android应用中ListView列表选项栏的编写方法
-
详解Android应用开发中Intent的作用及使用方法
-
详解Android中App的启动界面Splash的编写方法