Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第83章、Service之一(從零開始學Android)

第83章、Service之一(從零開始學Android)

編輯:Android技術基礎

android中的Service(服務)是一個什麼樣的東東呢?如果你對Windows系統中的服務理解,可以認為他們同理。如果你不了解也沒有關系,你只管把Service當成一個沒有界面的Activity就可以了。

Service是運行在後台,是不可見的、沒有界面的東西。你可以啟動一個服務Service來播放音樂,或者記錄你地理信息位置的改變,或者啟動一個服務來運行並一直監聽電話、短信等操作。

既然我們把Service當成一個無界的Activity來看待,那麼它也是運行在主線程,因而不能用它來做耗時的請求或者動作。如果有耗時的操作,那麼同樣需要在服務中開一個線程,在線程中做耗時操作。

1、服務一般分為兩種:

(1)本地服務, Local Service 用於應用程序內部。在Service可以調用Context.startService()啟動,調用Context.stopService()結束。在內部可以調用Service.stopSelf() 或 Service.stopSelfResult()來自己停止。無論調用了多少次startService(),都只需調用一次stopService()來停止。

(2)遠程服務, Remote Service 用於android系統內部的應用程序之間。可以定義接口並把接口暴露出來,以便其他應用進行操作。客戶端建立到服務對象的連接,並通過那個連接來調用服務。調用Context.bindService()方法建立連接,並啟動,以調用 Context.unbindService()關閉連接。多個客戶端可以綁定至同一個服務。如果服務此時還沒有加載,bindService()會先加載它。
提供給可被其他應用復用,比如定義一個天氣預報服務,提供與其他應用調用即可。

2、Service生命周期:

\

Service的生命周期比Activity要簡單一些,僅繼承了onCreate()、onStart()、onDestroy()三個方法。

當我們第一次啟動Service時,先後調用了onCreate()、onStart()這兩個方法;當停止Service時,則執行onDestroy()方法。

如果Service已經啟動了,當我們再次啟動Service時,不會在執行onCreate()方法,而是直接執行onStart()方法。它可以通過Service.stopSelf()方法或者Service.stopSelfResult()方法來停止自己,只要調用一次stopService()方法便可以停止服務,無論調用了多少次的啟動服務方法。

本章案例Activity與Service不綁定用法。

一、設計界面

1、布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <Button  
  9.         android:id="@+id/startservice"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="啟動Service" />  
  13.       
  14.     <Button  
  15.         android:id="@+id/stopservice"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:text="停止Service" />  
  19.   
  20. </LinearLayout>  

 

二、程序文件

1、打開“src/com.genwoxue.service/ServiceUtil.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.service;  
  2.   
  3. import android.app.Service;  
  4. import android.content.Intent;  
  5. import android.os.IBinder;  
  6. import android.util.Log;  
  7.   
  8. public class ServiceUtil extends Service {  
  9.   
  10.     private String TAG="ServiceView";  
  11.       
  12.     @Override   
  13.     public IBinder onBind(Intent intent){  
  14.         return null;  
  15.     }  
  16.       
  17.     //創建  
  18.     @Override  
  19.     public void onCreate(){  
  20.         Log.i(TAG, "服務開始創建:onCreate()!");  
  21.     }  
  22.       
  23.     //銷毀  
  24.     @Override  
  25.     public void onDestroy(){  
  26.         Log.i(TAG, "服務銷毀:onDestroy()!");  
  27.     }  
  28.       
  29.     //啟動  
  30.     @Override  
  31.     public int onStartCommand(Intent intent,int flags,int startId){  
  32.         Log.i(TAG, "服務啟動:onStart()=>Intent"+intent+",startID="+startId);  
  33.         return Service.START_CONTINUATION_MASK;  
  34.     }  
  35.       
  36. }  


2、打開“src/com.genwoxue.service/MainActivity.java”文件。
輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.service;  
  2.   
  3.   
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.widget.Button;  
  8. import android.app.Activity;  
  9. import android.content.Intent;  
  10.   
  11. public class MainActivity extends Activity {  
  12.   
  13.       
  14.     private Button btnStart=null;  
  15.     private Button btnStop=null;  
  16.       
  17.     @Override  
  18.     protected void onCreate(Bundle savedInstanceState) {  
  19.         super.onCreate(savedInstanceState);  
  20.         setContentView(R.layout.activity_main);  
  21.         btnStart=(Button)super.findViewById(R.id.startservice);  
  22.         btnStop=(Button)super.findViewById(R.id.stopservice);  
  23.           
  24.         //啟用Service  
  25.         btnStart.setOnClickListener(new OnClickListener(){  
  26.             public void onClick(View v)  
  27.             {    
  28.                 Intent intent=new Intent(MainActivity.this,ServiceUtil.class);  
  29.                 MainActivity.this.startService(intent);  
  30.             }  
  31.         });  
  32.           
  33.         //停止Service  
  34.         btnStop.setOnClickListener(new OnClickListener(){  
  35.             public void onClick(View v)  
  36.             {    
  37.                 Intent intent=new Intent(MainActivity.this,ServiceUtil.class);  
  38.                 MainActivity.this.stopService(intent);  
  39.             }  
  40.         });  
  41.           
  42.     }  
  43.   
  44.   
  45. }  

三、配置文件

打開“AndroidManifest.xml”文件。

然後輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.service"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="12"  
  9.         android:targetSdkVersion="15" />  
  10.   
  11.     <application  
  12.         android:allowBackup="true"  
  13.         android:icon="@drawable/ic_launcher"  
  14.         android:label="@string/app_name"  
  15.         android:theme="@style/AppTheme" >  
  16.         <activity  
  17.             android:name="com.genwoxue.service.MainActivity"  
  18.             android:label="@string/app_name" >  
  19.             <intent-filter>  
  20.                 <action android:name="android.intent.action.MAIN" />  
  21.                 <category android:name="android.intent.category.LAUNCHER" />  
  22.             </intent-filter>  
  23.         </activity>  
  24.         <service android:name="com.genwoxue.service.ServiceUtil" />  
  25.     </application>  
  26.   
  27. </manifest>  

 

注意:由於我們要啟用服務,需要在AndroidManifest.xml文件中添加以下內容:

<service android:name="com.genwoxue.service.ServiceUtil" />

四、運行結果

1、第一步、在LogCat中創建“Service”過濾器

\ \

2、運行Service App

\

3、單擊“啟用Service”和“停止Service”

\

我們觀察:

以上紅色背景為啟用Service輸出內容:onCreate()與onStart()執行,目前Service處於運行中狀態;
以上藍色背景為停用Service輸出內容:onDestroy()執行,Service被銷毀。 

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