免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1603 | 回复: 0
打印 上一主题 下一主题

android上怎样让一个Service开机自动启动 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-22 13:02 |只看该作者 |倒序浏览
转载出处:
http://www.androidlab.cn/viewthread.php?tid=421&extra=page%3D1
[color="blue"]1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫[color="red"]android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。
[color="blue"]2.构造一个[color="red"]IntentReceiver类,重构其抽象方法[color="red"]onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。
[color="blue"]3.在[color="red"]AndroidManifest.xml中,首先加入[color="red"]来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其[color="red"]中加入[color="red"] ,以使其能捕捉到这个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();
        }
    }
}

注意:现在的IntentReceiver已经变为BroadcastReceiver,OnReceiveIntent为onReceive。所以java这边的代码为:
(也可以实现应用程序开机自动启动)


Code
public class OlympicsReceiver extends BroadcastReceiver
{
    /*要接收的intent源*/
    static final String ACTION = "android.intent.action.BOOT_COMPLETED";
        
    public void onReceive(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();
            //这边可以添加开机自动启动的应用程序代码
        }
    }
}
从这段说明和代码中可以看出,接收一个信息,类似于来了一个中断,进行处理的流程,该怎么设计,用到哪些知识.
首先在xml文件中,部署说明一下这个类要捕捉的事件,[color="red"].其实很容易理解,这个类要处理什么事件把它说出来.
根据需要什么样的事件合适,那么就加入什么样的事件通知,MAIN.VIEW,EDIT等,这里用到的是开机后的启动完成信息.
在类中完成方法的实现.

               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/80919/showart_1972955.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP