Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android Service生命周期及用法

Android Service生命周期及用法

編輯:Android開發實例

大家好,上一節我講解了Android Activity的生命周期,這一節我將講解一下Service,首先我們要知道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和onBindService方法,它們分別執行了Service中IBinder()和onUnbind()方法。

為了讓大家 更容易理解,我寫了一個簡單的Demo,大家可以模仿著我,一步一步的來。

第一步:新建一個Android工程,我這裡命名為ServiceDemo.

第二步:修改main.xml代碼,我這裡增加了四個按鈕,代碼如下:

 

  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.     android:orientation="vertical" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" 
  6.     > 
  7.     <TextView 
  8.         android:id="@+id/text"    
  9.         android:layout_width="fill_parent"   
  10.         android:layout_height="wrap_content"   
  11.         android:text="@string/hello" 
  12.         /> 
  13.     <Button 
  14.         android:id="@+id/startservice" 
  15.         android:layout_width="fill_parent" 
  16.         android:layout_height="wrap_content" 
  17.         android:text="startService" 
  18.     /> 
  19.     <Button 
  20.         android:id="@+id/stopservice" 
  21.         android:layout_width="fill_parent" 
  22.         android:layout_height="wrap_content" 
  23.         android:text="stopService" 
  24.     /> 
  25.     <Button 
  26.         android:id="@+id/bindservice" 
  27.         android:layout_width="fill_parent" 
  28.         android:layout_height="wrap_content" 
  29.         android:text="bindService" 
  30.     /> 
  31.     <Button 
  32.         android:id="@+id/unbindservice" 
  33.         android:layout_width="fill_parent" 
  34.         android:layout_height="wrap_content" 
  35.         android:text="unbindService" 
  36.     /> 
  37. </LinearLayout> 

第三步:新建一個Service,命名為MyService.java代碼如下:

 

  1. package com.tutor.servicedemo;  
  2. import android.app.Service;  
  3. import android.content.Intent;  
  4. import android.os.Binder;  
  5. import android.os.IBinder;  
  6. import android.text.format.Time;  
  7. import android.util.Log;  
  8. public class MyService extends Service {  
  9.     //定義個一個Tag標簽  
  10.     private static final String TAG = "MyService";  
  11.     //這裡定義吧一個Binder類,用在onBind()有方法裡,這樣Activity那邊可以獲取到  
  12.     private MyBinder mBinder = new MyBinder();  
  13.     @Override 
  14.     public IBinder onBind(Intent intent) {  
  15.         Log.e(TAG, "start IBinder~~~");  
  16.         return mBinder;  
  17.     }  
  18.     @Override 
  19.     public void onCreate() {  
  20.         Log.e(TAG, "start onCreate~~~");  
  21.         super.onCreate();  
  22.     }  
  23.       
  24.     @Override 
  25.     public void onStart(Intent intent, int startId) {  
  26.         Log.e(TAG, "start onStart~~~");  
  27.         super.onStart(intent, startId);   
  28.     }  
  29.       
  30.     @Override 
  31.     public void onDestroy() {  
  32.         Log.e(TAG, "start onDestroy~~~");  
  33.         super.onDestroy();  
  34.     }  
  35.       
  36.       
  37.     @Override 
  38.     public boolean onUnbind(Intent intent) {  
  39.         Log.e(TAG, "start onUnbind~~~");  
  40.         return super.onUnbind(intent);  
  41.     }  
  42.       
  43.     //這裡我寫了一個獲取當前時間的函數,不過沒有格式化就先這麼著吧  
  44.     public String getSystemTime(){  
  45.           
  46.         Time t = new Time();  
  47.         t.setToNow();  
  48.         return t.toString();  
  49.     }  
  50.       
  51.     public class MyBinder extends Binder{  
  52.         MyService getService()  
  53.         {  
  54.             return MyService.this;  
  55.         }  
  56.     }  
  57. }  

第四步:修改ServiceDemo.java,代碼如下:

 

  1. package com.tutor.servicedemo;  
  2. import android.app.Activity;  
  3. import android.content.ComponentName;  
  4. import android.content.Context;  
  5. import android.content.Intent;  
  6. import android.content.ServiceConnection;  
  7. import android.os.Bundle;  
  8. import android.os.IBinder;  
  9. import android.view.View;  
  10. import android.view.View.OnClickListener;  
  11. import android.widget.Button;  
  12. import android.widget.TextView;  
  13. public class ServiceDemo extends Activity implements OnClickListener{  
  14.      
  15.     private MyService  mMyService;  
  16.     private TextView mTextView;  
  17.     private Button startServiceButton;  
  18.     private Button stopServiceButton;  
  19.     private Button bindServiceButton;  
  20.     private Button unbindServiceButton;  
  21.     private Context mContext;  
  22.       
  23.     //這裡需要用到ServiceConnection在Context.bindService和context.unBindService()裡用到  
  24.     private ServiceConnection mServiceConnection = new ServiceConnection() {  
  25.         //當我bindService時,讓TextView顯示MyService裡getSystemTime()方法的返回值   
  26.         public void onServiceConnected(ComponentName name, IBinder service) {  
  27.             // TODO Auto-generated method stub  
  28.             mMyService = ((MyService.MyBinder)service).getService();  
  29.             mTextView.setText("I am frome Service :" + mMyService.getSystemTime());  
  30.         }  
  31.           
  32.         public void onServiceDisconnected(ComponentName name) {  
  33.             // TODO Auto-generated method stub  
  34.               
  35.         }  
  36.     };  
  37.     public void onCreate(Bundle savedInstanceState) {  
  38.         super.onCreate(savedInstanceState);  
  39.         setContentView(R.layout.main);  
  40.         setupViews();  
  41.     }  
  42.       
  43.     public void setupViews(){  
  44.       
  45.         mContext = ServiceDemo.this;  
  46.         mTextView = (TextView)findViewById(R.id.text);  
  47.           
  48.           
  49.           
  50.         startServiceButton = (Button)findViewById(R.id.startservice);  
  51.         stopServiceButton = (Button)findViewById(R.id.stopservice);  
  52.         bindServiceButton = (Button)findViewById(R.id.bindservice);  
  53.         unbindServiceButton = (Button)findViewById(R.id.unbindservice);  
  54.           
  55.         startServiceButton.setOnClickListener(this);  
  56.         stopServiceButton.setOnClickListener(this);  
  57.         bindServiceButton.setOnClickListener(this);  
  58.         unbindServiceButton.setOnClickListener(this);  
  59.     }  
  60.      
  61.     public void onClick(View v) {  
  62.         // TODO Auto-generated method stub  
  63.         if(v == startServiceButton){  
  64.             Intent i  = new Intent();  
  65.             i.setClass(ServiceDemo.this, MyService.class);  
  66.             mContext.startService(i);  
  67.         }else if(v == stopServiceButton){  
  68.             Intent i  = new Intent();  
  69.             i.setClass(ServiceDemo.this, MyService.class);  
  70.             mContext.stopService(i);  
  71.         }else if(v == bindServiceButton){  
  72.             Intent i  = new Intent();  
  73.             i.setClass(ServiceDemo.this, MyService.class);  
  74.             mContext.bindService(i, mServiceConnection, BIND_AUTO_CREATE);  
  75.         }else{  
  76.             mContext.unbindService(mServiceConnection);  
  77.         }  
  78.     }  
  79.       
  80.       
  81.       

第五步:修改AndroidManifest.xml代碼(將我們新建的MyService注冊進去如下代碼第14行:) 
 

  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  3.       package="com.tutor.servicedemo" 
  4.       android:versionCode="1" 
  5.       android:versionName="1.0"> 
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name"> 
  7.         <activity android:name=".ServiceDemo" 
  8.                   android:label="@string/app_name"> 
  9.             <intent-filter> 
  10.                 <action android:name="android.intent.action.MAIN" /> 
  11.                 <category android:name="android.intent.category.LAUNCHER" /> 
  12.             </intent-filter> 
  13.         </activity> 
  14.         <service android:name=".MyService" android:exported="true"></service> 
  15.     </application> 
  16.     <uses-sdk android:minSdkVersion="7" /> 
  17. </manifest>  

第六步:執行上述工程,效果圖如下:

點擊startServie按鈕時先後執行了Service中onCreate()->onStart()這兩個方法,打開Logcat視窗效果如下圖:

我們這時可以按HOME鍵進入Settings(設置)->Applications(應用)->Running Services(正在運行的服務)看一下我們新啟動了一個服務,效果如下:

點擊stopService按鈕時,Service則執行了onDestroy()方法,效果圖如下所示:

這時候我們再次點擊startService按鈕,然後點擊bindService按鈕(通常bindService都是bind已經啟動的Service),我們看一下Service執行了IBinder()方法,以及TextView的值也有所變化了,如下兩張圖所示:

最後點擊unbindService按鈕,則Service執行了onUnbind()方法,如下圖所示:

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved