首页 > 学院 > 开发设计 > 正文

开机自动运行程序!

2019-11-09 16:21:53
字体:
来源:转载
供稿:网友

使用场景:手机开机后,自动运行程序,在屏幕上显示”Hello. I started!”字样。

背景知识:当 Android 启动时,会发出一个系统广播,内容为 ACTION_BOOT_COMPLETED,它的字符串常量表示为 android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到这个消息,再启动之即可。记住,Android 框架说:Don”t call me, I”ll call you back。我们要做的是做好接收这个消息的准备,而 实现的手段就是实现一个 BroadcastReceiver。

代码解析

1、界面 Activity:SayHello.java

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

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

<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <receiver android:name=".BootBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>

android.intent.action.BOOT_COMPLETED 消息。不要忘记配置 android.permission.RECEIVE_BOOT_COMPLETED 权限。 完成后,编译出 apk 包,安装到模拟器或手机中。关机,重新开机。 如果是系统进程的话,需要加入 init 配置文件来启动,随着 linux 启动而启动


上一篇:系统运行库

下一篇:Eclipse SVN插件安装

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表