Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android學習指南之十四:Service詳解及應用實例

Android學習指南之十四:Service詳解及應用實例

編輯:關於android開發

       上一節講到了Gallery畫廊,本節主要講解Android組件Service,主要內容包括:Service的概念、生命周期及其應用實例。

       一、Service簡介

       Service是Android程序中四大基礎組件之一,它和Activity一樣都是Context的子類,只不過它沒有UI界面,是在後台運行的組件。

Service類的繼承關系

       二、Service的生命周期

       Service對象不能自己啟動,需要通過某個Activity、Service或者其他Context對象來啟動。啟動的方法有兩種,Context.startService和Context.bindService()。兩種方式的生命周期是不同的,具體如下所示。

       Context.startService方式的生命周期:

       啟動時,startService –> onCreate() –> onStart()

       停止時,stopService –> onDestroy()

       Context.bindService方式的生命周期:

       綁定時,bindService  -> onCreate() –> onBind()

       解綁定時,unbindService –>onUnbind() –> onDestory()

       三、Service應用實例:控制音樂播放的Service

       下面我們用一個可以控制在後台播放音樂的例子來演示剛才所學知識,同學們可以通過該例子可以明顯看到通過綁定方式運行的Service在綁定對象被銷毀後也被銷毀了。

控制音樂播放的Service實例

       下面是編寫該實例的步驟:

       1、建立一個新項目名字叫Lesson14_HelloService,Activity起名叫MainHelloService.java。

       2、res/layout/main.xml中代碼如下:

XML/HTML代碼
  1. < ?xml version="1.0" encoding="utf-8"?>  
  2. <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">  
  3. <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="音樂播放服務" android:textsize="25sp" android:layout_margintop="10dp">  
  4. <button android:text="開啟音樂播放服務" android:textsize="20sp" android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">  
  5. </button>  
  6. <button android:text="停止音樂播放服務" android:textsize="20sp" android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">  
  7. </button>  
  8.   
  9. <button android:text="綁定音樂播放服務" android:textsize="20sp" android:id="@+id/Button03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">  
  10. </button>  
  11. <button android:text="解綁定音樂播放服務" android:textsize="20sp" android:id="@+id/Button04" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">  
  12. </button>  
  13. </textview></linearlayout>  

       3、在res目錄中建立一個raw目錄,並把一個音樂文件babayetu.mp3拷貝進來。

       4、在Activity的同目錄新建一個service文件MusicService.java。

Java代碼
  1. package android.basic.lesson14;   
  2.   
  3. import android.app.Service;   
  4. import android.content.Intent;   
  5. import android.media.MediaPlayer;   
  6. import android.os.IBinder;   
  7. import android.util.Log;   
  8. import android.widget.Toast;   
  9.   
  10. public class MusicService extends Service {   
  11.   
  12.         //為日志工具設置標簽   
  13.         String tag ="MusicService";           
  14.   
  15.         //定義音樂播放器變量   
  16.         MediaPlayer mPlayer;   
  17.   
  18.         //其他對象通過bindService方法通知該Service時該方法會被調用   
  19.         @Override  
  20.         public IBinder onBind(Intent intent) {   
  21.                 Toast.makeText(this,"MusicService onBind()",Toast.LENGTH_SHORT).show();   
  22.                 Log.i(tag, "MusicService onBind()");   
  23.                 mPlayer.start();   
  24.                 return null;   
  25.         }   
  26.   
  27.         //其他對象通過unbindService方法通知該Service時該方法會被調用   
  28.         @Override  
  29.         public boolean onUnbind(Intent intent){   
  30.                 Toast.makeText(this, "MusicService onUnbind()", Toast.LENGTH_SHORT).show();   
  31.                 Log.i(tag, "MusicService onUnbind()");   
  32.                 mPlayer.stop();   
  33.                 return false;   
  34.         }   
  35.   
  36.         //該服務不存在需要被創建時被調用,不管startService()還是bindService()都會在啟動時調用該方法   
  37.         @Override  
  38.         public void onCreate(){   
  39.                 Toast.makeText(this, "MusicService onCreate()", Toast.LENGTH_SHORT).show();   
  40.                 //創建一個音樂播放器對象   
  41.                 mPlayer=MediaPlayer.create(getApplicationContext(), R.raw.babayetu);   
  42.                 //設置可以重復播放   
  43.                 mPlayer.setLooping(true);   
  44.                 Log.i(tag, "MusicService onCreate()");   
  45.         }   
  46.   
  47.         //用startService方法調用該服務時,在onCreate()方法調用之後,會調用改方法   
  48.         @Override  
  49.         public void onStart(Intent intent,int startid){   
  50.                 Toast.makeText(this,"MusicService onStart",Toast.LENGTH_SHORT).show();   
  51.                 Log.i(tag, "MusicService onStart()");   
  52.                 mPlayer.start();   
  53.         }   
  54.   
  55.         //該服務被銷毀時調用該方法   
  56.         @Override  
  57.         public void onDestroy(){   
  58.                 Toast.makeText(this, "MusicService onDestroy()", Toast.LENGTH_SHORT).show();   
  59.                 mPlayer.stop();   
  60.                 Log.i(tag, "MusicService onDestroy()");   
  61.         }   
  62. }  

       5、MainHelloService.java中的代碼:

Java代碼
  1. package android.basic.lesson14;   
  2.   
  3. import android.app.Activity;   
  4. import android.content.ComponentName;   
  5. import android.content.Context;   
  6. import android.content.Intent;   
  7. import android.content.ServiceConnection;   
  8. import android.os.Bundle;   
  9. import android.os.IBinder;   
  10. import android.util.Log;   
  11. import android.view.View;   
  12. import android.view.View.OnClickListener;   
  13. import android.widget.Button;   
  14. import android.widget.Toast;   
  15.   
  16. public class MainHelloService extends Activity {   
  17.   
  18.         //為日志工具設置標簽   
  19.         String tag = "MusicService";   
  20.   
  21.     /** Called when the activity is first created. */  
  22.     @Override  
  23.     public void onCreate(Bundle savedInstanceState) {   
  24.         super.onCreate(savedInstanceState);   
  25.         setContentView(R.layout.main);   
  26.   
  27.         //輸出Toast消息和日志記錄   
  28.                 Toast.makeText(MainHelloService.this, "MainHelloService onCreate", Toast.LENGTH_SHORT).show();   
  29.                 Log.i(tag, "MainHelloService onCreate");   
  30.   
  31.         //定義組件對象   
  32.         Button b1= (Button)findViewById(R.id.Button01);   
  33.         Button b2= (Button)findViewById(R.id.Button02);   
  34.         Button b3= (Button)findViewById(R.id.Button03);   
  35.         Button b4= (Button)findViewById(R.id.Button04);   
  36.   
  37.          //定義服務鏈接對象   
  38.          final ServiceConnection conn = new ServiceConnection(){   
  39.   
  40.                         @Override  
  41.                         public void onServiceConnected(ComponentName name, IBinder service) {   
  42.                                 Toast.makeText(MainHelloService.this, "ServiceConnection onServiceConnected", Toast.LENGTH_SHORT).show();   
  43.                                 Log.i(tag, "ServiceConnection onServiceConnected");   
  44.   
  45.                         }   
  46.   
  47.                         @Override  
  48.                         public void onServiceDisconnected(ComponentName name) {   
  49.                                 Toast.makeText(MainHelloService.this, "ServiceConnection onServiceDisconnected", Toast.LENGTH_SHORT).show();   
  50.                                 Log.i(tag, "ServiceConnection onServiceDisconnected");   
  51.   
  52.                         }};   
  53.   
  54.                 //定義點擊監聽器   
  55.         OnClickListener ocl= new OnClickListener(){   
  56.   
  57.                         @Override  
  58.                         public void onClick(View v) {   
  59.                                 //顯示指定intent所指的對象是個Service   
  60.                                 Intent intent = new Intent(MainHelloService.this,android.basic.lesson14.MusicService.class);   
  61.                                 switch(v.getId()){   
  62.                                 case R.id.Button01:   
  63.                                         //開始服務   
  64.                                         startService(intent);   
  65.                                         break;   
  66.                                 case R.id.Button02:   
  67.                                         //停止服務   
  68.                                         stopService(intent);   
  69.                                         break;   
  70.                                 case R.id.Button03:   
  71.                                         //綁定服務   
  72.                                         bindService(intent,conn,Context.BIND_AUTO_CREATE);   
  73.                                         break;   
  74.                                 case R.id.Button04:   
  75.                                         //解除綁定   
  76.                                         unbindService(conn);   
  77.                                         break;   
  78.                                 }   
  79.                         }   
  80.         };   
  81.   
  82.         //綁定點擊監聽器   
  83.         b1.setOnClickListener(ocl);   
  84.         b2.setOnClickListener(ocl);   
  85.         b3.setOnClickListener(ocl);   
  86.         b4.setOnClickListener(ocl);       
  87.   
  88.     }   
  89.   
  90.     @Override  
  91.     public void onDestroy(){   
  92.             super.onDestroy();   
  93.                 Toast.makeText(MainHelloService.this, "MainHelloService onDestroy", Toast.LENGTH_SHORT).show();   
  94.                 Log.i(tag, "MainHelloService onDestroy");   
  95.     }   
  96. }  

       了解了Service的概念、生命周期,又跟著做了一個實例,相信大家現在對Service的使用已經有了一個基本的掌握了。

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