基于Android Service 生命周期的详细介绍
service概念及用途:
android中的服务,它与activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,service进程并没有结束,它仍然在后台运行,那我们什么时候会用到service呢?比如我们播放音乐的时候,有可能想边听音乐边干些其他事情,当我们退出播放音乐的应用,如果不用service,我们就听不到歌了,所以这时候就得用到service了,又比如当我们一个应用的数据是通过网络获取的,不同时间(一段时间)的数据是不同的这时候我们可以用service在后台定时更新,而不用每打开应用的时候在去获取。
service生命周期 :
android service的生命周期并不像activity那么复杂,它只继承了oncreate(),onstart(),ondestroy()三个方法,当我们第一次启动service时,先后调用了oncreate(),onstart()这两个方法,当停止service时,则执行ondestroy()方法,这里需要注意的是,如果service已经启动了,当我们再次启动service时,不会在执行oncreate()方法,而是直接执行onstart()方法。
service与activity通信:
service后端的数据最终还是要呈现在前端activity之上的,因为启动service时,系统会重新开启一个新的进程,这就涉及到不同进程间通信的问题了(aidl),当我们想获取启动的service实例时,我们可以用到bindservice和unbindservice方法,它们分别执行了service中ibinder()和onunbind()方法。
1、添加一个类,在mainactivity所在包之下
public class lservice extends service {
private static final string tag = "lservice";
@override
public ibinder onbind(intent intent) {
log.i(tag, "onbind");
return null;
}
@override
public void oncreate() {
log.i(tag, "oncreate");
super.oncreate();
}
@override
public void onstart(intent intent, int startid) {
log.i(tag, "onstart");
super.onstart(intent, startid);
}
@override
public void ondestroy() {
log.i(tag, "ondestoty");
super.ondestroy();
}
@override
public boolean onunbind(intent intent) {
log.i(tag, "onubind");
return super.onunbind(intent);
}
public string getsystemtime() {
time t = new time();
t.settonow();
return t.tostring();
}
public class lbinder extends binder {
lservice getservice() {
return lservice.this;
}
}
}
2、在程序界面文件中添加控件
<textview
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="wecclome to livingstone's bolg" />
<button
android:id="@+id/startservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="startservice" />
<button
android:id="@+id/stopservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="stopservice" />
<button
android:id="@+id/bindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="bindservice" />
<button
android:id="@+id/unbindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="unbindservice" />
3、修改mainactivity中的方法,以及让mainactivity类实现onclicklistener接口
public class mainactivity extends activity implements onclicklistener {
private lservice mlservice;
private textview mtextview;
private button startservicebutton;
private button stopservicebutton;
private button bindservicebutton;
private button unbindservicebutton;
private context mcontext;
// 这里需要用到serviceconnection,在context.bindservice和context.unbindservice()里用到
private serviceconnection mserviceconnection = new serviceconnection() {
// 当bindservice时,让textview显示lservice里getsystemtime()方法的返回值
@override
public void onserviceconnected(componentname name, ibinder service) {
mlservice = ((lservice.lbinder) service).getservice();
mtextview.settext("i am from service :" + mlservice.getsystemtime());
}
public void onservicedisconnected(componentname name) {
}
};
public void setupviews() {
mcontext = mainactivity.this;
mtextview = (textview) findviewbyid(r.id.text);
startservicebutton = (button) findviewbyid(r.id.startservice);
stopservicebutton = (button) findviewbyid(r.id.stopservice);
bindservicebutton = (button) findviewbyid(r.id.bindservice);
unbindservicebutton = (button) findviewbyid(r.id.unbindservice);startservicebutton.setonclicklistener(this);
stopservicebutton.setonclicklistener(this);
bindservicebutton.setonclicklistener(this);
unbindservicebutton.setonclicklistener(this);
}
@override
protected void oncreate(bundle savedinstancestate) {
super.oncreate(savedinstancestate);
setcontentview(r.layout.activity_main);
setupviews();
}
@override
public void onclick(view v) {
if (v == startservicebutton) {
intent i = new intent(mainactivity.this, lservice.class);
mcontext.startservice(i);
} else if (v == stopservicebutton) {
intent i = new intent(mainactivity.this, lservice.class);
mcontext.stopservice(i);
} else if (v == bindservicebutton) {
intent i = new intent(mainactivity.this, lservice.class);
mcontext.bindservice(i, mserviceconnection, bind_auto_create);
} else {
mcontext.unbindservice(mserviceconnection);
}
}
}
4、注册service
<service
android:name=".lservice"
android:exported="true" >
</service>
5、运行程序
程序界面
点击startservice此时调用程序设置里面可以看到running service有一个lservice
点击stopservice
点击bindservice此时service已经被关闭
点击unbindservice
先点击startservice,再依次点击bindservice和unbindservice
推荐阅读
-
基于Android AppWidgetProvider的使用介绍
-
基于Android LayoutInflater的使用介绍
-
基于Android Service 生命周期的详细介绍
-
基于Android CALL && SendMes Test的相关介绍
-
基于Android SQLite的使用介绍
-
基于Android 监听ContentProvider 中数据变化的相关介绍
-
基于B-树和B+树的使用:数据搜索和数据库索引的详细介绍
-
基于Android"今日事今日毕"的使用介绍
-
两分钟让你彻底明白Android Activity生命周期的详解(图文介绍)
-
android TextView属性的详细介绍 分享