歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android開機自啟動

要想在Android系統中實現開機啟動,很簡單,只需要幾個步驟就可以了。

1.定義廣播類

2.Manifest.xml中注冊廣播類

3.添加權限

下面就是具體操作了。

首先,我們來定義廣播類。

創建一個類BootReceiver,使其繼承BroadcastReceiver。

重寫一些必要的Java函數

  1. package cn.etzmico;  
  2.   
  3. import android.content.BroadcastReceiver;  
  4. import android.content.Context;  
  5. import android.content.Intent;  
  6. import android.util.Log;  
  7.   
  8. public class BootReceiver extends BroadcastReceiver {  
  9.     public void onReceive(Context context, Intent intent) {  
  10.   
  11.         if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {  
  12.             Log.d("BootReceiver", "system boot completed");  
  13.   
  14.             // context, AutoRun.class  
  15.             Intent newnewIntent = new Intent(context, AutoRun.class);  
  16.   
  17.             /* MyActivity action defined in AndroidManifest.xml */  
  18.             newIntent.setAction("android.intent.action.MAIN");  
  19.   
  20.             /* MyActivity category defined in AndroidManifest.xml */  
  21.             newIntent.addCategory("android.intent.category.LAUNCHER");  
  22.   
  23.             /*  
  24.              * If activity is not launched in Activity environment, this flag is  
  25.              * mandatory to set  
  26.              */  
  27.             newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
  28.   
  29.             /* if you want to start a service, follow below method */  
  30.             context.startActivity(newIntent);  
  31.   
  32.         }  
  33.     }  
  34. }  

AutoRun.class就是程序運行的Activity。

其次,在Manifest.xml中注冊廣播類

  1. <receiver android:name=".BootReceiver" android:label="@string/app_name">  
  2.     <intent-filter>  
  3.         <action android:name="android.intent.action.BOOT_COMPLETED" />  
  4.         <category android:name="android.intent.category.LAUNCHER" />  
  5.     </intent-filter>  
  6. </receiver>  

最後,再添加上權限就可以了

  1. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>  

這樣,我們就實現了Android系統的開機自啟動,切勿忘記Manifest.xml中的操作!

本文Android開機自啟動 工程資源下載:

免費下載地址在 http://linux.linuxidc.com/

用戶名與密碼都是www.linuxidc.com

具體下載目錄在 /pub/Android源碼集錦/2011年/10月/Android開機自啟動/

Copyright © Linux教程網 All Rights Reserved