Android SDK 1.1验证可行

1.定义一个BroadcastReceiver

public class BootReceiver extends BroadcastReceiver {public void onReceive(Context ctx, Intent intent) {Log.d("BootReceiver", "system boot completed");//start activityString action="android.intent.action.MAIN";String category="android.intent.category.LAUNCHER";Intent myi=new Intent(ctx,CustomDialog.class);myi.setAction(action);myi.addCategory(category);myi.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);ctx.startActivity(myi);//start serviceIntent s=new Intent(ctx,MyService.class);ctx.startService(s);}}

2.配置Receiver的许可,允许接收系统启动消息,在AndroidManifest.xml中:

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

3.配置Receiver,可以接收系统启动消息,在AndroidManifest.xml中

        <receiver android:name=".app.BootReceiver">        <intent-filter>        <action android:name="android.intent.action.BOOT_COMPLETED"/>                <category android:name="android.intent.category.HOME" />        </intent-filter>        </receiver>

4.启动模拟器,可以看到系统启动后,弹出一个对话框。

更多相关文章

  1. 浅析Android中的消息机制
  2. 浅析Android中的消息机制
  3. android 实现类似Iphone底部消息数量提示
  4. android WARNING: Application does not specify ...
  5. 按键消息传播流程(WindowManagerService.java)
  6. Android使用videoview播放res/raw下的视频
  7. Android开机自启动
  8. Android——Messenger
  9. Android消息机制Message消息池

随机推荐

  1. Android透明界面与ListView动态刷新
  2. 更换linux/android的启动logo
  3. Android四大布局之表格布局行列位置控制
  4. 对TabHost、TabWidget的理解分析
  5. 【起航计划 006】2015 起航计划 Android(
  6. android ContentResolver详解
  7. Android调试工具之ADB
  8. Android(安卓)Animation 详解
  9. Android存储设备(U盘,SD卡)状态监测(《An
  10. android 拉伸图片