码迷,mamicode.com
首页 > 移动开发 > 详细

android中的开机自启动

时间:2014-11-06 19:28:18      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:android   http   io   ar   java   sp   strong   div   on   

 

android中的开机自启动

android中的开机自启动可分为两步:

1.写一个BroadcastReceiver:

Java代码  bubuko.com,布布扣
  1. public class BootReceiver extends BroadcastReceiver {  
  2.     private static final String TAG = "BootReceiver";  
  3.   
  4.     @Override  
  5.     public void onReceive(Context context, Intent intent) {  
  6.         Log.i(TAG, "开机自动启动");      
  7.         // AutoOpenActivity为程序的主Activity  
  8.         // 也可以是运行在后台的Service  
  9.         Intent auto = new Intent(context, AutoOpenActivity.class);      
  10.         auto.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);      
  11.         context.startActivity(auto);      
  12.     }  
  13. }  

 

 

 

2.在Manifest.xml中注册BroadcastReceiver和添加权限: 

 

 

Xml代码  bubuko.com,布布扣
  1. <receiver android:name=".BootReceiver" >  
  2.           <intent-filter >  
  3.                 <action android:name="android.intent.action.BOOT_COMPLETED" />  
  4.   
  5.                 <category android:name="android.intent.category.HOME" />  
  6.            </intent-filter>  
  7. </receiver>  
Xml代码  bubuko.com,布布扣
  1. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />  

android中的开机自启动

标签:android   http   io   ar   java   sp   strong   div   on   

原文地址:http://www.cnblogs.com/geniusxjq/p/4079404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!