打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
android上怎样让一个Service开机自动启动
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();
        }
    }
}
 
注意:现在的IntentReceiver已经变为BroadcastReceiver,OnReceiveIntent为onReceive。所以java这边的代码为:
(也可以实现应用程序开机自动启动)

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();
            
//这边可以添加开机自动启动的应用程序代码
        }
    }
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Android怎么让一个service开机自动启动
Android开机启动Activity或者Service方法
android 开机启动_关机_重启
【android】使用BroadcastReceiver实现开机启动Service或Activity
Android开机广播和关机广播
Android实现开机自启动服务
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服