首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android开机自动启动程序设立

2012-08-21 
Android开机自动启动程序设置Android开机自启动public class BootReceiver extends BroadcastReceiver {pu

Android开机自动启动程序设置
Android开机自启动

    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.启动模拟器,可以看到系统启动后,弹出一个对话框。

热点排行