首页 > 代码库 > Android---让你的APK程序开机自动运行(转)

Android---让你的APK程序开机自动运行(转)

转自: http://blog.sina.com.cn/s/blog_72f6e45701014l6t.html

有些时候,应用需要在开机时就自动运行,例如某个自动从网上更新内容的后台service。怎样实现开机自动运行的应用?在撰写本文时,联想到高焕堂先生以“Don‘t call me, I‘ll call you back!”总结Android框架,真是说到点子上了。理解这句话的含义,许多有关Android平台上实现某种功能的问题,都能迎刃而解。


使用场景:手机开机后,自动运行程序,在屏幕上显示"Hello. I started!"字样。
 
背景知识:当Android启动时,会发出一个系统广播,内容为ACTION_BOOT_COMPLETED,它的字符串常量表示为android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到这个消息,再启动之即可。记住,Android框架说:Don‘tcall me, I‘ll call youback。我们要做的是做好接收这个消息的准备,而实现的手段就是实现一个BroadcastReceiver。
 
代码解析:
 
1、界面Activity:SayHello.java
 
package com.ghstudio.BootStartDemo; 
  
import android.app.Activity; 
import android.os.Bundle; 
import android.widget.TextView; 
  
public class SayHello extendsActivity {  
  
   @Override  
   public void onCreate(Bundle savedInstanceState){  
      super.onCreate(savedInstanceState);  
       TextViewtv = new TextView(this);  
      tv.setText("Hello. I started!");  
      setContentView(tv);  
   }  
}  
 
 
这段代码很简单,当Activity启动时,创建一个TextView,用它显示"Hello. I started!"字样。
 
2、接收广播消息:BootBroadcastReceiver.java
 
package com.ghstudio.BootStartDemo; 
  
importandroid.content.BroadcastReceiver;  
import android.content.Context; 
import android.content.Intent; 
  
public class BootBroadcastReceiverextends BroadcastReceiver {  
  
 static finalString ACTION = "android.intent.action.BOOT_COMPLETED"; 
  
 @Override 
 public voidonReceive(Context context, Intent intent) { 
   
  if(intent.getAction().equals(ACTION)){  
  Intent sayHelloIntent=newIntent(context,SayHello.class);  
  sayHelloIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
  context.startActivity(sayHelloIntent); 
  } 
 } 
}  
 
该类派生自BroadcastReceiver,覆载方法onReceive中,检测接收到的Intent是否符合BOOT_COMPLETED,如果符合,则启动SayHello那个Activity。
 
3、配置文件:AndroidManifest.xml
 
<?xml version="1.0"encoding="utf-8"?>  
<manifestxmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.ghstudio.BootStartDemo"  
     android:versionCode="1" 
    android:versionName="1.0">  
   <applicationandroid:icon="@drawable/icon"android:label="@string/app_name"> 
      <activity android:name=".SayHello" 
              android:label="@string/app_name"> 
         <intent-filter> 
             <actionandroid:name="android.intent.action.MAIN" /> 
             <categoryandroid:name="android.intent.category.LAUNCHER" /> 
         </intent-filter> 
      </activity>  
 <receiverandroid:name=".BootBroadcastReceiver"> 
 <intent-filter> 
   <actionandroid:name="android.intent.action.BOOT_COMPLETED"/>  
  </intent-filter> 
 </receiver>  
   </application> 
   <uses-sdkandroid:minSdkVersion="3" /> 
  
  <uses-permissionandroid:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission> 
  
</manifest>  
 
注意其中粗体字那一部分,该节点向系统注册了一个receiver,子节点intent-filter表示接收android.intent.action.BOOT_COMPLETED消息。不要忘记配置android.permission.RECEIVE_BOOT_COMPLETED权限。
 
代码下载 http://pan.baidu.com/s/1hqgQhik

Android---让你的APK程序开机自动运行(转)