Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1070000
  • 博文数量: 169
  • 博客积分: 12306
  • 博客等级: 上将
  • 技术积分: 1299
  • 用 户 组: 普通用户
  • 注册时间: 2006-08-29 14:55
文章分类

全部博文(169)

文章存档

2012年(18)

2011年(78)

2010年(15)

2009年(1)

2008年(11)

2007年(39)

2006年(7)

我的朋友

分类: LINUX

2012-02-23 14:52:20

1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。
2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。
3.在AndroidManifest.xml中,首先加入 来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其中加入 ,以使其能捕捉到这个Action。




Java代码  收藏代码
  1. "android.permission.RECEIVE_BOOT_COMPLETED" />    
  2. ".OlympicsReceiver" android:label="@string/app_name">      
  3.           
  4.        "android.intent.action.BOOT_COMPLETED" />      
  5.        "android.intent.category.LAUNCHER" />      
  6.           
  7.   



Java代码  收藏代码
  1. public class OlympicsReceiver extends IntentReceiver      
  2. {     
  3.     /*要接收的intent源*/    
  4.     static final String ACTION = "android.intent.action.BOOT_COMPLETED";     
  5.    
  6.     public void onReceiveIntent(Context context, Intent intent)      
  7.     {     
  8.         if (intent.getAction().equals(ACTION))      
  9.         {     
  10.                   context.startService(new Intent(context,      
  11.                        OlympicsService.class), null);//启动倒计时服务     
  12.              Toast.makeText(context, "OlympicsReminder service has started!", Toast.LENGTH_LONG)  
  13.                         .show();     
  14.         }     
  15.     }     
  16. }  



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




Java代码  收藏代码
  1. public class OlympicsReceiver extends BroadcastReceiver     
  2. {     
  3.     /*要接收的intent源*/    
  4.     static final String ACTION = "android.intent.action.BOOT_COMPLETED";     
  5.    
  6.     public void onReceive(Context context, Intent intent)      
  7.     {     
  8.         if (intent.getAction().equals(ACTION))      
  9.         {     
  10.                   context.startService(new Intent(context,      
  11.                        OlympicsService.class), null);//启动倒计时服务     
  12.              Toast.makeText(context, "OlympicsReminder service has started!", Toast.LENGTH_LONG)  
  13.                          .show();     
  14.             //这边可以添加开机自动启动的应用程序代码     
  15.         }     
  16.     }     


原文地址:http://zkl-1987.iteye.com/blog/1051343

阅读(2211) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~