为什么我的服务无法在BOOT_COMPLETED上启动?

时间:2016-06-29 17:57:54

标签: android

为了创建一个在设备启动时启动的服务,我采纳了herehere所述的建议。构建完成,主要活动也在Nexus-5虚拟设备上正常运行。

但是,当我检查logcat输出以验证服务是否已启动时,没有提到我在MYLOG类中写入logcat的文本BackgroundService。这让我相信,下面的代码不能正常工作。此外,我在启动虚拟设备时看不到Toast。我错过了什么?

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.alexander.bootservice">

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name="com.example.alexander.bootservice.BootCompletedIntentReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <service android:name="com.example.alexander.bootservice.BackgroundService"/>

    </application>

</manifest>

广播接收器类

package com.example.alexander.bootservice;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

/**
 * Created by alexander on 13/06/16.
 */

public class BootCompletedIntentReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
            Intent pushIntent = new Intent(context, BackgroundService.class);
            context.startService(pushIntent);
        }
    }
}

服务类

package com.example.alexander.bootservice;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

/**
 * Created by alexander on 13/06/16.
 */
public class BackgroundService extends Service {

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public void onCreate() {
        Toast.makeText(this, "OK", Toast.LENGTH_LONG).show();
        super.onCreate();

        Log.d("MYLOG", "onCreate has been called");
    }
}

2 个答案:

答案 0 :(得分:0)

android:permission="android.permission.RECEIVE_BOOT_COMPLETED"删除<receiver>。这就是说发送广播的人必须持有RECEIVE_BOOT_COMPLETED权限,但情况不一定如此。

答案 1 :(得分:0)

您的代码工作正常。您没有在logcat中看到“MYLOG”的原因是因为您希望它在您第一次在模拟器上安装应用程序时看到它。

您需要在设备上安装应用程序并打开一次,然后才能在每次启动完成后通过操作android.intent.action.BOOT_COMPLETED接收意图。如果你安装了应用程序但没有打开它(可以在真实手机上安装adb),重新启动时你的应用程序将无法获得意图操作android.intent.action.BOOT_COMPLETED

要测试,请在模拟器上安装应用程序并将其打开。然后在终端中使用adb shell am broadcast -a android.intent.action.BOOT_COMPLETED命令发送此操作。您的设备将重新启动,您将能够看到日志和吐司。如果有任何混淆,请告诉我。

是的你应该从接收器中删除android:permission =“android.permission.RECEIVE_BOOT_COMPLETED”,如其中一个答案所示,不需要它。