Android 让一个Service开机自动启动
2010-09-15 00:06:00 来源:WEB开发网Posted on 2009-02-08 21:55 十二号的国王 阅读(2075) 评论(5) 编辑 收藏 网摘 所属分类: 移动开发
转载出处:http://www.androidlab.cn/viewthread.php?tid=421&extra=page%3D1
1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。
2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。
3.在AndroidManifest.xml中,首先加入< uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED">< /uses-permission>来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其< intent-filter>中加入< action android:name="android.intent.action.BOOT_COMPLETED" /> ,以使其能捕捉到这个Action。
一个例子
xml:
代码
< uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED">< /uses-permission>
< receiver android:name=".OlympicsReceiver" android:label="@string/app_name">
< intent-filter>
< action android:name="android.intent.action.BOOT_COMPLETED" />
< category android:name="android.intent.category.LAUNCHER" />
< /intent-filter>
< /receiver>
java:
代码
public class OlympicsReceiver extends IntentReceiver
{
/*要接收的intent源*/
static final String ACTION = "android.intent.action.BOOT_COMPLETED";
public void onReceiveIntent(Context context, Intent intent)
{
if (intent.getAction().equals(ACTION))
{
context.startService(new Intent(context,
OlympicsService.class), null);//启动倒计时服务
Toast.makeText(context, "OlympicsReminder service has started!", Toast.LENGTH_LONG).show();
}
}
}
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接