[Android实例] Android实现开机自动运行程序

来源:未知 责任编辑:智问网络 发表时间:2013-10-22 19:21 点击:
背景知识:当Android启动时,会发出一个系统广播,内容为ACTION_BOOT_COMPLETED,它的字符串常量表示为 android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到这个消息,再启动之即可。记住,Android框架说:Don't call me, I'll call you back。我们要做的是做好接收这个消息的准备,而实现的手段就是实现一个BroadcastReceiver。
    代码解析:
    1、界面Activity:SayHello.java


  1. package com.ghstudio.BootStartDemo;

  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.widget.TextView;

  5. public class SayHello extends Activity {

  6.     @Override
  7.     public void onCreate(Bundle savedInstanceState) {
  8.         super.onCreate(savedInstanceState);


  9.         TextView tv = new TextView(this);
  10.         tv.setText("Hello. I started!");


  11.         setContentView(tv);
  12.     }
  13. }

复制代码

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

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


  1. package com.ghstudio.BootStartDemo;

  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;

  5. public class BootBroadcastReceiver extends BroadcastReceiver {

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

  7. @Override
  8. public void onReceive(Context context, Intent intent) {
  9.   
  10.   if (intent.getAction().equals(ACTION)){
  11.    Intent sayHelloIntent=new Intent(context,SayHello.class);
  12.    sayHelloIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

  13.    context.startActivity(sayHelloIntent);
  14.   }
  15. }

  16. }

复制代码

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

3、配置文件:AndroidManifest.xml


  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.   [b]<receiver android:name=".BootBroadcastReceiver">
  15.   <intent-filter>
  16.     <action android:name="android.intent.action.BOOT_COMPLETED" />
  17.    </intent-filter>
  18.   </receiver> [/b]    </application>
  19.     <uses-sdk android:minSdkVersion="3" />

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

  21. </manifest>

复制代码

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

    延伸思考:在多数情况下,要自动运行的不是有界面的程序,而是在后台运行的service。此时,就要用startService来启动相应的 service了。
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Android 完全退出程序
    • 原创:Android应用开发-Andorid歌词秀,含源码
    • android 屏幕保护
    • Android手机软件汉化教程---第四课 dex文件汉化
    • 众多Android 开源项目推荐,给力工作给力学习
    • Android Audio代码分析4
    • Android得到已安装的应用程序信息!
    • Android开发者指南(29) —— USB Host and Accessory
    • Android成长的幕后推手:工程师鲁宾
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1