服务器之家

服务器之家 > 正文

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

时间:2021-01-10 14:22     来源/作者:Android开发网

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

 

  1. <p>  startservicebutton = (button) findviewbyid(r.id.startservice);<br>  stopservicebutton = (button) findviewbyid(r.id.stopservice);<br>  bindservicebutton = (button) findviewbyid(r.id.bindservice);<br>  unbindservicebutton = (button) findviewbyid(r.id.unbindservice);</p><p>  startservicebutton.setonclicklistener(this);<br>  stopservicebutton.setonclicklistener(this);<br>  bindservicebutton.setonclicklistener(this);<br>  unbindservicebutton.setonclicklistener(this);<br> }<br> @override<br> protected void oncreate(bundle savedinstancestate) {<br>  super.oncreate(savedinstancestate);<br>  setcontentview(r.layout.activity_main);<br>  setupviews();<br> }<br> @override<br> public void onclick(view v) {<br>  if (v == startservicebutton) {<br>   intent i = new intent(mainactivity.this, lservice.class);<br>   mcontext.startservice(i);<br>  } else if (v == stopservicebutton) {<br>   intent i = new intent(mainactivity.this, lservice.class);<br>   mcontext.stopservice(i);<br>  } else if (v == bindservicebutton) {<br>   intent i = new intent(mainactivity.this, lservice.class);<br>   mcontext.bindservice(i, mserviceconnection, bind_auto_create);<br>  } else {<br>   mcontext.unbindservice(mserviceconnection);<br>  }<br> }<br>}</p><p></p> 

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 生命周期的详细介绍

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部