由于Android 9处于在线状态,所以我无法使用JobIntentService发送通知,该通知是使用BroadcastReceiver启动的。
它可以在其他装有Android <= 8.1的设备上很好地工作,并且我可以立即收到通知。 有时它也可以在Android P上运行,但是有时系统无法使用AlarmManager触发注册的服务!或者我无法收到它。
出了什么问题? AlarmReceiver.java
public class AlarmReceiver extends BroadcastReceiver {
private static final String TAG = "AlarmReceiver";
@Override
public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
onBoot(context);
}
Log.d("action", "i recieved an action");
try {
Bundle bundle = intent.getExtras();
String message = bundle.getString("Push_Message", "No Content");
int type = bundle.getInt("Push_Type", -1);
Intent newIntent = new Intent(context, AppJobService.class);
newIntent.putExtra("Push_Message", message);
newIntent.putExtra("Push_Type", type);
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
AppJobService.enqueueWork(context, AppJobService.class, AppJobService.JOB_ID, newIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
AndroidManifest.xml中的权限
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
在这里,我已将Receiver添加到AndroidManifest.xml
<receiver
android:name=".notifications.AlarmReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
我正在以这种方式在从JobIntentService继承的类中向AlarmManager注册服务
AppJobService.java
public void sendTimedNotification(String message, int type, long timeInMillis) {
Intent intent = new Intent(this, AlarmReceiver.class);
intent.putExtra("Push_Message", message);
intent.putExtra("Push_Type", type);
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timeInMillis);
PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, timeInMillis, sender);
}
答案 0 :(得分:0)
根据文档:
在打ze模式下设备空闲时,警报不会触发。任何预定 警报将延迟,直到设备退出“打until”状态。如果你需要 即使设备处于空闲状态,也要确保您的工作完成 几个选项。您可以使用setAndAllowWhileIdle()或 setExactAndAllowWhileIdle()以确保警报将执行。 另一种选择是使用新的WorkManager API,该API是为 一次或定期执行后台工作。欲了解更多 有关信息,请参阅使用WorkManager安排任务。