Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第92章、廣播之三通過廣播啟動服務(從零開始學Android)

第92章、廣播之三通過廣播啟動服務(從零開始學Android)

編輯:Android技術基礎

Service(服務)在Android中地位是至關重要的,我們可以通過Activity與Broadcast(廣播)啟動Service(服務),我們本章學習如何通過廣播Broadcast啟動服務Service。

也許你會說,能用Activity啟動,干嘛要用廣播呢?——且聽電話監聽、短信監聽再作分解!

一、設計界面

1、布局文件

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

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8" ?>  
  2.   
  3. <LinearLayout   
  4.     xmlns:android="http://schemas.android.com/apk/res/android"   
  5.     android:orientation="vertical"   
  6.     android:layout_width="fill_parent"   
  7.     android:layout_height="fill_parent">  
  8.   
  9.     <Button  
  10.         android:id="@+id/send"  
  11.         android:layout_width="wrap_content"  
  12.         android:layout_height="wrap_content"  
  13.         android:text="通過Broadcast啟動Service" />  
  14.   
  15. </LinearLayout>  

 

二、程序文件

1、創建“src/com.genwoxue.broadcastservice/ServiceUtil.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.broadcastservice;  
  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 static final String TAG="AboutService";   
  11.     @Override  
  12.     public IBinder onBind(Intent intent){  
  13.         return null;  
  14.     }  
  15.       
  16.     @Override  
  17.     public void onCreate(){  
  18.         Log.i(TAG,"服務:onCreate()");  
  19.     }  
  20.       
  21.     //啟動  
  22.     @Override  
  23.     public int onStartCommand(Intent intent,int flags,int startId){  
  24.         Log.i(TAG, "服務啟動:onStart()=>Intent"+intent+",startID="+startId);  
  25.         return Service.START_CONTINUATION_MASK;  
  26.     }  
  27.       
  28.     @Override  
  29.     public void onDestroy(){  
  30.         Log.i(TAG,"服務:onDestroy()");  
  31.     }  
  32.   
  33. }  

2、創建“src/com.genwoxue.broadcastservice/BroadcastReceiverUtil.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.broadcastservice;  
  2.   
  3. import android.content.BroadcastReceiver;  
  4. import android.content.Context;  
  5. import android.content.Intent;  
  6.   
  7. public class BroadcastReceiverUtil extends BroadcastReceiver{  
  8.     @Override  
  9.     public void onReceive(Context context,Intent intent){  
  10.         //廣播接收器(接收方)判斷Action為“com.genwoxue.action.ABOUTSERVICE”則啟動服務  
  11.         if("com.genwoxue.action.ABOUTSERVICE".equals(intent.getAction())){  
  12.             context.startService(new Intent(context,ServiceUtil.class));  
  13.         }  
  14.           
  15.     }  
  16. }  

3、打開“src/com.genwoxue.broadcastservice/MainActivity.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.broadcastservice;  
  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. import android.content.IntentFilter;  
  11.   
  12. public class MainActivity extends Activity {  
  13.   
  14.     private BroadcastReceiverUtil util=null;  
  15.     private Button btnSend=null;  
  16.       
  17.     @Override  
  18.     protected void onCreate(Bundle savedInstanceState) {  
  19.         super.onCreate(savedInstanceState);  
  20.         setContentView(R.layout.activity_main);  
  21.           
  22.         btnSend=(Button)super.findViewById(R.id.send);  
  23.         btnSend.setOnClickListener(new OnClickListener(){  
  24.             @Override  
  25.             public void onClick(View v){  
  26.                 //發送廣播:其Action為“com.genwoxue.action.ABOUTSERVICE”  
  27.                 Intent intent=new Intent("com.genwoxue.action.ABOUTSERVICE");  
  28.                 MainActivity.this.sendBroadcast(intent);  
  29.                   
  30.                   
  31.                 //實例化廣播過濾器(只過濾其Action為"com.genwoxue.action.ABOUTSERVICE")  
  32.                 IntentFilter filter=new IntentFilter("com.genwoxue.action.ABOUTSERVICE");  
  33.                 //實例化廣播接收器(接收方)  
  34.                 util=new BroadcastReceiverUtil();  
  35.                 //注冊BroadcastReceiver:參數為接收器與過濾器  
  36.                 MainActivity.this.registerReceiver(util, filter);  
  37.             }  
  38.         });  
  39.     }  
  40.       
  41.     @Override  
  42.     protected void onStop(){  
  43.         //停止廣播  
  44.         super.unregisterReceiver(util);  
  45.         super.onStop();  
  46.           
  47.         //停止服務  
  48.         Intent intent=new Intent(MainActivity.this,ServiceUtil.class);  
  49.         MainActivity.this.stopService(intent);  
  50.     }  
  51.   
  52. }  

 

三、配置文件

打開“AndroidManifest.xml”文件。

然後輸入以下代碼:

[java] 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.broadcastservice"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="10"  
  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.broadcastservice.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.broadcastservice.ServiceUtil" />  
  25.     </application>  
  26.   
  27. </manifest>  

 

注意:需要在AndroidManifest.xml文件中添加<service...>:

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

四、運行結果

Activity發送廣播—>廣播接收方啟動Service服務

\ \

\

\

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