有時我們需要應用在Android設備開機時自動運行,就像Windows系統中的很多程序一樣。比如說有些後台service需要從網絡上更新內容等等。那麼如何讓應用在開機時自動運行呢?本文給出一個實例進行詳細說明。
該實例要實現的功能是,在Android手機開機後,自動運行實例程序,在屏幕上顯示文字“Hello. I started!”。
背景知識:當Android啟動時,會發出一個系統廣播,內容為ACTION_BOOT_COMPLETED,它的字符串常量表示為android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到這個消息,再啟動之即可。記住,高煥堂先生對Android框架的總結:Don't call me, I'll call you back。我們要做的是做好接收這個消息的准備,而實現的手段就是實現一個BroadcastReceiver。
Android程序開機自動運行的實例代碼解析:
1、界面Activity:SayHello.java
Java代碼
- package com.ghstudio.BootStartDemo;
-
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.TextView;
-
- public class SayHello extends Activity {
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
-
- TextView tv = new TextView(this);
- tv.setText("Hello. I started!");
-
- setContentView(tv);
- }
- }
這段代碼很簡單,當Activity啟動時,創建一個TextView,用它顯示"Hello. I started!"字樣。
2、接收廣播消息:BootBroadcastReceiver.java
Java代碼
- package com.ghstudio.BootStartDemo;
-
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
-
- public class BootBroadcastReceiver extends BroadcastReceiver {
-
- static final String ACTION = "android.intent.action.BOOT_COMPLETED";
-
- @Override
- public void onReceive(Context context, Intent intent) {
- if (intent.getAction().equals(ACTION)){
- Intent sayHelloIntent=new Intent(context,SayHello.class);
-
- sayHelloIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
-
- context.startActivity(sayHelloIntent);
- }
- }
- }
該類派生自BroadcastReceiver,覆載方法onReceive中,檢測接收到的Intent是否符合BOOT_COMPLETED,如果符合,則啟動SayHello那個Activity。
3、配置文件:AndroidManifest.xml
XML/HTML代碼
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.ghstudio.BootStartDemo"
- android:versionCode="1"
- android:versionName="1.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:name=".SayHello"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <receiver android:name=".BootBroadcastReceiver">
- <intent-filter>
- <action android:name="android.intent.action.BOOT_COMPLETED" />
- </intent-filter>
- </receiver>
- </application>
- <uses-sdk android:minSdkVersion="3" />
-
- <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
-
- </manifest>
注意其中粗體字那一部分,該節點向系統注冊了一個receiver,子節點intent-filter表示接收android.intent.action.BOOT_COMPLETED消息。不要忘記配置android.permission.RECEIVE_BOOT_COMPLETED權限。
完成後,編譯出apk包,安裝到模擬器或手機中。關機,重新開機。
運行截圖:
延伸思考:在多數情況下,要自動運行的不是有界面的程序,而是在後台運行的service。此時,就要用startService來啟動相應的service了。