本文来自[http://blog.csdn.net/hellogv/](http://blog.csdn.net/hellogv/) ,引用必须注明出处!
上次介绍了[Activity以及Intent的使用](http://blog.csdn.net/hellogv/archive/2010/11/06/5992198.aspx),这次就介绍Service,如果把Activity比喻为前台程序,那么Service就是后台程序,Service的整个生命周期都只会在后台执行。Service跟Activity一样也由Intent调用。在工程里想要添加一个Service,先新建继承Service的类,然后到AndroidManifest.xml -> Application ->Application Nodes中的Service标签中添加。
Service要由Activity通过startService 或者 bindService来启动,Intent负责传递参数。先贴出本文程序运行截图:
![](https://box.kancloud.cn/2016-06-24_576cb09ea16a8.gif)
本文主要讲解Service的调用,以及其生命周期。
![](https://box.kancloud.cn/2016-06-24_576cb09eb60d0.gif)
上图是startService之后再stopService的Service状态变化。
![](https://box.kancloud.cn/2016-06-24_576cb09ec9367.gif)
上图是bindService之后再unbindService的Service状态变化。
startService与bindService都可以启动Service,那么它们之间有什么区别呢?它们两者的区别就是使Service的周期改变。由startService启动的Service必须要有stopService来结束Service,不调用stopService则会造成Activity结束了而Service还运行着。bindService启动的Service可以由unbindService来结束,也可以在Activity结束之后(onDestroy)自动结束。
![](https://box.kancloud.cn/2016-06-24_576cb09edd1df.gif)
上图是startService之后再Activity.finish()的Service状态变化,Service还在跑着。
![](https://box.kancloud.cn/2016-06-24_576cb09f058ad.gif)
上图是bindService之后再Activity.finish()的Service状态变化,Service最后自动unbindService。
main.xml代码:
~~~
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnStartMyService" android:text="StartMyService"></Button> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnStopMyService" android:text="StopMyService"></Button> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnBindMyService" android:text="BindMyService"></Button> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnUnbindMyService" android:text="UnbindMyService"></Button> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/btnExit" android:text="退出程序"></Button></LinearLayout>
~~~
testService.java的源码:
~~~
package com.testService;import android.app.Activity;import android.app.Service;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.widget.Button;public class testService extends Activity { Button btnStartMyService,btnStopMyService,btnBindMyService,btnUnbindMyService,btnExit; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); btnStartMyService=(Button)this.findViewById(R.id.btnStartMyService); btnStartMyService.setOnClickListener(new ClickEvent()); btnStopMyService=(Button)this.findViewById(R.id.btnStopMyService); btnStopMyService.setOnClickListener(new ClickEvent()); btnBindMyService=(Button)this.findViewById(R.id.btnBindMyService); btnBindMyService.setOnClickListener(new ClickEvent()); btnUnbindMyService=(Button)this.findViewById(R.id.btnUnbindMyService); btnUnbindMyService.setOnClickListener(new ClickEvent()); btnExit=(Button)this.findViewById(R.id.btnExit); btnExit.setOnClickListener(new ClickEvent()); } @Override public void onDestroy() { super.onDestroy(); Log.e("Activity","onDestroy"); } private ServiceConnection _connection = new ServiceConnection() { @Override public void onServiceConnected(ComponentName arg0, IBinder arg1) { // TODO Auto-generated method stub } @Override public void onServiceDisconnected(ComponentName name) { // TODO Auto-generated method stub } }; class ClickEvent implements View.OnClickListener{ @Override public void onClick(View v) { Intent intent=new Intent(testService.this,MyService.class); if(v==btnStartMyService){ testService.this.startService(intent); } else if(v==btnStopMyService){ testService.this.stopService(intent); } else if(v==btnBindMyService){ testService.this.bindService(intent, _connection, Service.BIND_AUTO_CREATE); } else if(v==btnUnbindMyService){ if(MyService.ServiceState=="onBind")//Service绑定了之后才能解绑 testService.this.unbindService(_connection); } else if(v==btnExit) { testService.this.finish(); } } }}
~~~
MyService.java的源码:
~~~
package com.testService;import android.app.Service;import android.content.Intent;import android.os.IBinder;import android.util.Log;public class MyService extends Service { static public String ServiceState=""; @Override public IBinder onBind(Intent arg0) { Log.e("Service", "onBind"); ServiceState="onBind"; return null; } @Override public boolean onUnbind(Intent intent){ super.onUnbind(intent); Log.e("Service", "onUnbind"); ServiceState="onUnbind"; return false; } @Override public void onCreate(){ super.onCreate(); Log.e("Service", "onCreate"); ServiceState="onCreate"; } @Override public void onDestroy(){ super.onDestroy(); Log.e("Service", "onDestroy"); ServiceState="onDestroy"; } @Override public void onStart(Intent intent,int startid){ super.onStart(intent, startid); Log.e("Service", "onStart"); ServiceState="onStart"; }}
~~~
- 前言
- Android提高第一篇之MediaPlayer
- Android提高第二篇之SurfaceView的基本使用
- Android提高第三篇之SurfaceView与多线程的混搭
- Android提高第四篇之Activity+Intent
- Android提高第五篇之Service
- Android提高第六篇之BroadcastReceiver
- Android提高第七篇之XML解析与生成
- Android提高第八篇之SQLite分页读取
- Android提高第九篇之SQLite分页表格
- Android提高第十篇之AudioRecord实现&quot;助听器&quot;
- Android提高第十一篇之模拟信号示波器
- Android提高第十二篇之蓝牙传感应用
- Android提高第十三篇之探秘蓝牙隐藏API
- Android提高第十四篇之探秘TelephonyManager
- Android提高第十五篇之ListView自适应实现表格
- Android提高十六篇之使用NDK把彩图转换灰度图
- Android上使用ASIFT实现对视角变化更鲁棒的特征匹配
- 在Android上使用ZXing识别条形码/二维码
- Android提高十七篇之多级树形菜单的实现
- Android-opencv之CVCamera
- Android提高十八篇之自定义Menu(TabMenu)
- Android提高第十九篇之&quot;多方向&quot;抽屉
- Android提高第二十篇之MediaPlayer播放网络音频
- Android提高第二十一篇之MediaPlayer播放网络视频
- android平板上的GridView视图缓存优化
- 精确监听AbsListView滚动至底部
- 可动态布局的Android抽屉之基础
- 可动态布局的Android抽屉之完整篇
- Android MediaPlayer与Http Proxy结合之基础篇