欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

基于Android Service 生命周期的详细介绍

程序员文章站 2023-11-28 23:37:16
service概念及用途: android中的服务,它与activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,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实例时,我们可以用到bindserviceunbindservice方法,它们分别执行了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、运行程序

基于Android Service 生命周期的详细介绍程序界面

点击startservice基于Android Service 生命周期的详细介绍此时调用程序设置里面可以看到running service有一个lservice

点击stopservice基于Android Service 生命周期的详细介绍

点击bindservice基于Android Service 生命周期的详细介绍此时service已经被关闭

点击unbindservice基于Android Service 生命周期的详细介绍

先点击startservice,再依次点击bindservice和unbindservice

基于Android Service 生命周期的详细介绍