手记

Android程序如何有效的在开机时自动运行?

 有时我们需要应用在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代码

  1. package com.ghstudio.BootStartDemo;    

  2.     

  3. import android.app.Activity;      

  4. import android.os.Bundle;    

  5. import android.widget.TextView;    

  6.    

  7. public class SayHello extends Activity {      

  8.     @Override      

  9.     public void onCreate(Bundle savedInstanceState) {      

  10.         super.onCreate(savedInstanceState);      

  11.   

  12.         TextView tv = new TextView(this);      

  13.         tv.setText("Hello. I started!");    

  14.     

  15.         setContentView(tv);      

  16.     }      

  17. }  

       这段代码很简单,当Activity启动时,创建一个TextView,用它显示"Hello. I started!"字样。

       2、接收广播消息:BootBroadcastReceiver.java

Java代码

  1. package com.ghstudio.BootStartDemo;    

  2.   

  3. import android.content.BroadcastReceiver;    

  4. import android.content.Context;    

  5. import android.content.Intent;    

  6.   

  7. public class BootBroadcastReceiver extends BroadcastReceiver {    

  8.   

  9. static final String ACTION = "android.intent.action.BOOT_COMPLETED";    

  10.   

  11. @Override    

  12. public void onReceive(Context context, Intent intent) {    

  13.   if (intent.getAction().equals(ACTION)){    

  14.    Intent sayHelloIntent=new Intent(context,SayHello.class);    

  15.   

  16.    sayHelloIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    

  17.   

  18.    context.startActivity(sayHelloIntent);    

  19.   }    

  20. }    

  21. }   

       该类派生自BroadcastReceiver,覆载方法onReceive中,检测接收到的Intent是否符合BOOT_COMPLETED,如果符合,则启动SayHello那个Activity。

       3、配置文件:AndroidManifest.xml

XML/HTML代码

  1. <?xml version="1.0" encoding="utf-8"?>  

  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  

  3.       package="com.ghstudio.BootStartDemo"  

  4.       android:versionCode="1"  

  5.       android:versionName="1.0">  

  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">  

  7.         <activity android:name=".SayHello"  

  8.                   android:label="@string/app_name">  

  9.             <intent-filter>  

  10.                 <action android:name="android.intent.action.MAIN" />  

  11.                 <category android:name="android.intent.category.LAUNCHER" />  

  12.             </intent-filter>  

  13.         </activity>  

  14.   <receiver android:name=".BootBroadcastReceiver">  

  15.   <intent-filter>  

  16.     <action android:name="android.intent.action.BOOT_COMPLETED" />  

  17.    </intent-filter>  

  18.   </receiver>  

  19.     </application>  

  20.     <uses-sdk android:minSdkVersion="3" />  

  21.   

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

  23.   

  24. </manifest>   

       注意其中粗体字那一部分,该节点向系统注册了一个receiver,子节点intent-filter表示接收android.intent.action.BOOT_COMPLETED消息。不要忘记配置android.permission.RECEIVE_BOOT_COMPLETED权限。

       完成后,编译出apk包,安装到模拟器或手机中。关机,重新开机。

       运行截图:

       延伸思考:在多数情况下,要自动运行的不是有界面的程序,而是在后台运行的service。此时,就要用startService来启动相应的service了。

原文链接:http://www.apkbus.com/blog-919651-72633.html

0人推荐
随时随地看视频
慕课网APP