Android中Service服务详解(二)
本文详细分析了android中service服务。分享给大家供大家参考,具体如下:
在前面文章《android中service服务详解(一)》中,我们介绍了服务的启动和停止,是调用context的startservice和stopservice方法。还有另外一种启动方式和停止方式,即绑定服务和解绑服务,这种方式使服务与启动服务的活动之间的关系更为紧密,可以在活动中告诉服务去做什么事情。
为了说明这种情况,做如下工作:
1、修改service服务类myservice
package com.example.testservice; import android.app.service; import android.content.intent; import android.os.binder; import android.os.ibinder; import android.util.log; import android.widget.toast; public class myservice extends service { //创建自己的绑定服务业务逻辑 class musicbinder extends binder{ public void ready(){ log.d("myservice", "----ready method---"); } public void play(){ log.d("myservice", "----play method---"); } } private musicbinder musicbinder = new musicbinder(); @override public ibinder onbind(intent arg0) { toast.maketext(this, "服务的onbind方法被调用", toast.length_short).show(); return musicbinder; } /** * 服务第一次创建的时候调用 */ @override public void oncreate() { super.oncreate(); toast.maketext(this, "服务的oncreate方法被调用", toast.length_short).show(); } /** * 服务每一次启动的时候调用 */ @override public int onstartcommand(intent intent, int flags, int startid) { toast.maketext(this, "服务的onstartcommand方法被调用", toast.length_short).show(); return super.onstartcommand(intent, flags, startid); } @override public void ondestroy() { toast.maketext(this, "服务的ondestroy方法被调用", toast.length_short).show(); super.ondestroy(); } }
在服务类中,添加了内部类musicbinder,在该内部类中,我们模拟了两个方法。同时在onbind方法中返回我们内部类实例。
2、修改布局文件activity_main.xml
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="启动服务" /> <button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="停止服务" /> <button android:id="@+id/button3" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="绑定服务" /> <button android:id="@+id/button4" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="解绑服务" /> </linearlayout>
即添加了两个按钮:“绑定服务”和“解绑服务”按钮。
3、修改mainactivity.java文件
package com.example.testservice; import com.example.testservice.myservice.musicbinder; 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.view.menu; import android.view.view; import android.view.view.onclicklistener; import android.widget.button; public class mainactivity extends activity implements onclicklistener{ private button startservice_button; private button stopservice_button; private button bindservice_button; private button unbindservice_button; private myservice.musicbinder musicbinder; //创建serviceconnection,在绑定服务的时候会用到。 private serviceconnection connection = new serviceconnection() { @override public void onservicedisconnected(componentname service) { } @override public void onserviceconnected(componentname name, ibinder service) { //类型转换 musicbinder = (myservice.musicbinder) service; //指挥服务需要做的工作 musicbinder.ready(); musicbinder.play(); } }; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); //获取开启服务按钮 startservice_button = (button) findviewbyid(r.id.button1); //获取停止服务按钮 stopservice_button = (button) findviewbyid(r.id.button2); //获取绑定服务按钮 bindservice_button = (button) findviewbyid(r.id.button3); //获取解绑服务按钮 unbindservice_button = (button) findviewbyid(r.id.button4); //调用点击事件 startservice_button.setonclicklistener(this); stopservice_button.setonclicklistener(this); bindservice_button.setonclicklistener(this); unbindservice_button.setonclicklistener(this); } /** * 点击事件 */ @override public void onclick(view view) { switch(view.getid()){ case r.id.button1: //“开启服务”按钮 intent startintent = new intent(this,myservice.class); //开启服务 startservice(startintent); break; case r.id.button2: //“停止服务”按钮 intent stopintent = new intent(this,myservice.class); //停止服务 stopservice(stopintent); break; case r.id.button3: //“绑定服务”按钮 intent bindintent = new intent(this,myservice.class); bindservice(bindintent, connection, bind_auto_create); break; case r.id.button4: //“解绑服务”按钮 intent unbindintent = new intent(this,myservice.class); unbindservice(connection); break; default: break; } } @override public boolean oncreateoptionsmenu(menu menu) { // inflate the menu; this adds items to the action bar if it is present. getmenuinflater().inflate(r.menu.main, menu); return true; } }
在该类中,创建了serviceconnection的匿名类,即当活动和服务建立连接后,需要做的工作,在onserviceconnected方法中我们进行了绑定服务的类型转换,然后调用相应的业务逻辑方法。
活动和服务的绑定石在onclick方法中实现的:使用bindservice方法进行绑定,使mainactivity活动和myservice服务绑定在一起,其中第三个参数是个标志位,此处表示在活动和服务进行绑定后自动创建服务。
活动和服务的解绑使用方法unbindservice。
4、测试
点击“绑定服务”后,如下:
同时会执行ready和play方法,会在日志中打印出来。
点击“解绑服务”后,如下:
总结:使用这种方式绑定服务的流程如下:
context的bindservice方法--》服务的oncreate方法--》服务的onbind方法--》服务运行。
解绑服务流程如下:
服务运行--》context的unbindservice方法--》服务的ondestroy方法--》服务停止。
更多关于android组件相关内容感兴趣的读者可查看本站专题:《android基本组件用法总结》
希望本文所述对大家android程序设计有所帮助。