android: BroadcastReceiver RECEIVE_BOOT_COMPLETE 不工作

android: BroadcastReceiver RECEIVE_BOOT_COMPLETE does not work

我想创建一个 Android 应用程序,它在后台定期(每分钟)执行一些操作。应用程序应该没有用户界面,因此不会有 Action-Class。它应该在开机后自动启动。

我已经如下所示编写了我的应用程序,但它在启动后没有启动?有人可以帮忙吗?

我正在使用带有 Android 4.4.2

的三星平板电脑 GT-P5200

非常感谢您的提前帮助。

Manifest.xml

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

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

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <receiver
        android:name=".BootReceiver"
        android:enabled="true"
        android:exported="true" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

    <service
        android:name=".MyService"
        android:enabled="true"
        android:exported="true" >
    </service>
</application>

</manifest>

BootReceiver.java

package com.somecompany.justoneservice;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.text.format.DateUtils;
import android.util.Log;

public class BootReceiver extends BroadcastReceiver {
    public BootReceiver() {
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        Log.d("TAG", "BOOT");
        long interval = DateUtils.MINUTE_IN_MILLIS * 1;
        long firstStart = System.currentTimeMillis() + interval;
        Intent mainServiceIntent = new Intent(context, MyService.class);
        PendingIntent mainServicePendingIntent = PendingIntent.getService(context, 0, mainServiceIntent, 0);
        AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
        am.setInexactRepeating(AlarmManager.RTC, firstStart, interval, mainServicePendingIntent);

    }
}

MySevice.java

package com.somecompany.justoneservice;

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

public class MyService extends Service {
    public MyService() {
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("TAG", "Service created.");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d("TAG", "Service started. (" + startId + ")");
        return super.onStartCommand(intent, flags, startId);
    }

    @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        Log.d("TAG", "Service started.");
    }
    @Override
    public IBinder onBind(Intent arg0) {
        return null;
    }
}

The application shall have no user interface, therefore there will be no Action-Class.

新安装的应用程序的清单注册接收器被禁用,直到某些东西使用显式 Intent 来启动您的组件之一。通常,这是用户在主屏幕启动器中点击您的一项活动的图标。通常这不是问题,因为所有应用程序都需要 activity,以允许用户配置应用程序的行为、获取帮助、阅读许可协议条款等

在某些情况下,主屏幕启动器图标以外的其他东西可以使用显式 Intent 启动您的组件之一。例如,如果您是某个其他应用程序的插件,则该其他应用程序可能会检测到您的安装并启动您的组件之一。

但是,如果没有任何东西可以使用显式 Intent 启动您的组件之一,那么您的 BOOT_COMPLETED 接收器将永远无法获得控制权,即使在重新启动后也是如此。