我一直试图在设备在android上启动时启动一项服务,但我无法让它工作。我在网上看了一些链接,但没有一个代码工作。我是不是忘了什么?

AndroidManifest.xml

<receiver
    android:name=".StartServiceAtBootReceiver"
    android:enabled="true"
    android:exported="false"
    android:label="StartServiceAtBootReceiver" >
    <intent-filter>
        <action android:name="android.intent.action._BOOT_COMPLETED" />
    </intent-filter>
</receiver>

<service
    android:name="com.test.RunService"
    android:enabled="true" />

BroadcastReceiver

public void onReceive(Context context, Intent intent) {
    if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
        Intent serviceLauncher = new Intent(context, RunService.class);
        context.startService(serviceLauncher);
        Log.v("TEST", "Service loaded at start");
    }
}

当前回答

请注意,在问题的开头,有一个拼写错误:

<行动android: name = " android.intent.action._BOOT_COMPLETED " / >

而不是:

<行动android: name = " android.intent.action.BOOT_COMPLETED " / >

一个小“_”和所有这些麻烦:)

其他回答

正如@Damian评论的那样,这个帖子里的所有答案都是错误的。手动这样做会有服务在设备进入睡眠状态时中途停止的风险。你需要先获得一个尾流锁。幸运的是,支持库给了我们一个类来做这件事:

public class SimpleWakefulReceiver extends WakefulBroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        // This is the Intent to deliver to our service.
        Intent service = new Intent(context, SimpleWakefulService.class);

        // Start the service, keeping the device awake while it is launching.
        Log.i("SimpleWakefulReceiver", "Starting service @ " + SystemClock.elapsedRealtime());
        startWakefulService(context, service);
    }
}

然后,在你的服务中,确保释放唤醒锁:

    @Override
    protected void onHandleIntent(Intent intent) {
        // At this point SimpleWakefulReceiver is still holding a wake lock
        // for us.  We can do whatever we need to here and then tell it that
        // it can release the wakelock.

...
        Log.i("SimpleWakefulReceiver", "Completed service @ " + SystemClock.elapsedRealtime());
        SimpleWakefulReceiver.completeWakefulIntent(intent);
    }

不要忘记在mainfest中添加WAKE_LOCK权限:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

作为附加信息:BOOT_COMPLETE在外部存储挂载之前发送给应用程序。因此,如果应用程序被安装到外部存储,它将不会收到BOOT_COMPLETE广播消息。

更多详细信息,请参见广播接收器侦听“引导完成”部分。

我刚刚发现,可能是因为设置>电源中的快速启动选项

当我关闭这个选项时,我的应用程序接收到一个this广播,而不是其他。

顺便说一下,我在HTC Incredible S上安装了Android 2.3.3。

希望能有所帮助。

如果你正在使用Android Studio,你非常喜欢自动完成,那么我必须告诉你,我正在使用Android Studio v 1.1.0,我使用自动完成以下权限

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

Android Studio Auto-completedRECEIVE_BOOT_COMPLETED都是小写的,比如receive_boot_completed,我一直在拉我的头发,因为我已经列出了我的清单,为启动服务在启动时做的事情。我刚刚再次确认

Android Studio会自动用小写完成此权限。

事实上,我不久前遇到了这个麻烦,而且它非常非常容易修复,如果你设置了"android.intent.action.BOOT_COMPLETED"权限和intent-filter,你实际上没有做错什么。

注意,如果你在Android 4。X,你必须在启动服务之前运行广播监听器,这意味着,你必须先添加一个活动,一旦你的广播接收器运行,你的应用程序应该像你预期的那样运行,然而,在Android 4上。X,我还没有找到一种方法来启动启动没有任何活动的服务,我认为谷歌这样做是出于安全原因。