Android - 广播接收器在服务中,不接收

时间:2018-03-26 14:22:20

标签: android service broadcastreceiver alarmmanager

我正在使用AlarmManager来设置闹钟。 我有一个服务,在那个服务中我有一个广播接收器。

问题是,当选择的时间和日期到来时,接收器无法接收它。

onStart我的Service类的一部分,以及注册我的接收器的位置:

public int onStartCommand(Intent intent, int flags, int startId) {
    super.onCreate();

    IntentFilter intentFilter = new IntentFilter();
    registerReceiver(receiver, intentFilter);

    Log.i("com.example.adama", "Service has started!");

    return START_STICKY;
}

接收方的onReceive方法:

    public static BroadcastReceiver receiver = new BroadcastReceiver(){

    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();

        Log.i("com.example.adama", "Receiver has received!"); ...}

我运行服务并使用AlarmManager设置闹钟的部分:

Intent serviceIntent = new Intent(this, BrService.class);
    startService(serviceIntent);

    Intent intent = new Intent(this, BrService.class); 
    PendingIntent pendingIntent = PendingIntent.getBroadcast(this,alarmCode++, intent, 0);
    AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
    alarmManager.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingIntent);

清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.adama.wifiv2_spinner">
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.wifi" />
<uses-permission android:name="android.permission.VIBRATE"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    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>
    <service android:name=".BrService"/>
</application>

我错过了什么?

我正在尝试这个,因为即使用户关闭应用程序我也希望收到它。

1 个答案:

答案 0 :(得分:0)

如果用户强制关闭您的应用,除了用户手动重启您的应用之外,您无法执行任何操作来启动接收器。

除此之外,请确保您已将BOOT_COMPLETED操作添加到您的意图过滤器,以及清单的RECEIVE_BOOT_COMPLETED权限,如此主题中所述。这将使您的接收器在重新启动手机后再次启动(再次打开和关闭)。

Android BOOT_COMPLETED not received when application is closed

此外,在这个帖子中已经提到过,为了让你的接收器在应用程序关闭(非强制关闭)后工作,接收者需要在清单中注册:

Is there a way to keep a repeating alarm working after existing the app that uses a broadcast receiver?

尝试一下,让我们知道它是否对您有所帮助:)。