gpt4 book ai didi

Android 7,8 和 Oxygen OS : Broadcast Receiver not working if app is killed

转载 作者:太空狗 更新时间:2023-10-29 14:39:54 30 4
gpt4 key购买 nike

在 Android 7 之后,如果通过从最近的任务列表中滑动关闭应用程序而将其杀死,我的警报接收器将不会接收到广播接收器。
以下是我的 AlarmReceiver 中的 fragment ,它扩展了 BroadCastReceiver。

public class AlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d(Constants.TAG, "event received");
setContext(context);

/*
*** My logic here ***
*/

Log.d(Constants.TAG, "alarm received");
}
}

我正在设置闹钟并为闹钟注册 AlarmReceiver 类的地方。

public class UnityNotificationManager
{
public static void SetNotification(int id, long delayMs, String title, String message, String ticker, int sound, int vibrate,
int lights, String largeIconResource, String smallIconResource, int bgColor, String bundle, String dataString)
{
Context currentActivity = UnityPlayer.currentActivity;
AlarmManager am = (AlarmManager)currentActivity.getSystemService(Context.ALARM_SERVICE);

Intent intent = new Intent(Constants.ALARM_RECEIVER);
intent.setClass(currentActivity, AlarmReceiver.class);
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.setFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);

intent.putExtra("ticker", ticker);
intent.putExtra("title", title);
intent.putExtra("message", message);
intent.putExtra("id", id);
intent.putExtra("color", bgColor);
intent.putExtra("sound", sound == 1);
intent.putExtra("vibrate", vibrate == 1);
intent.putExtra("lights", lights == 1);
intent.putExtra("l_icon", largeIconResource);
intent.putExtra("s_icon", smallIconResource);
intent.putExtra("bundle", bundle);
intent.putExtra("dataString", dataString);

PendingIntent pendingIntent = PendingIntent.getBroadcast(currentActivity,
id, intent,
PendingIntent.FLAG_UPDATE_CURRENT);

am.cancel(pendingIntent);

long finalTime = System.currentTimeMillis() + delayMs;

if (Build.VERSION.SDK_INT < 23) {
am.set(AlarmManager.RTC_WAKEUP,finalTime, pendingIntent);
} else {
am.setAndAllowWhileIdle(AlarmManager.RTC_WAKEUP,finalTime, pendingIntent);
}
Log.d(Constants.TAG, "event fired finalTime = "+ finalTime);
}
}

上面使用的值Constants.ALARM_RECEIVER与 list 中为 AlarmReceiver 将收听的广播定义的操作名称相同。

<receiver android:name="com.example.app.AlarmReceiver">
<intent-filter>
<action android:name="com.example.app.alarm.action.trigger" />
</intent-filter>
</receiver>

使用显式广播的原因是 android 文档声明发布 Android Oreo,android 应用程序将无法在后台使用隐式广播来提高性能。相同的链接:https://developer.android.com/about/versions/oreo/background.html#broadcasts

我还尝试使用 WakefulBroadCastReceiver 来避免 Android 设备上的打瞌睡模式进行的优化,但事实证明此类已在 Android Oreo 中弃用。相同的链接:https://developer.android.com/reference/android/support/v4/content/WakefulBroadcastReceiver.html

上述代码适用于几乎所有其他制造商,但 One Plus 设备除外,它运行在氧气操作系统上。有什么方法可以解决此问题,因为如果应用程序以相同方式被终止,WhatsApp 等应用程序的通知将继续工作。

附加信息:
1. 我运行命令 adb shell dumpsys package <package_name> | grep stopped在 One Plus 5T 上,它返回以下输出:

User 0: ceDataInode=2039857 installed=true hidden=false suspended=false stopped=false notLaunched=false enabled=0 instant=false

这反过来表明,从最近的任务列表中滑动该应用程序时,该应用程序并未停止。另外,在应用信息页面启用了“强制停止”按钮,表明该应用没有被强制停止。

  1. 如果我手动将电池优化设置从“优化”更改为“未优化”,我能够使通知正常工作,但由于其他应用程序的通知即使在优化状态下也能正常工作,我不相信这是我的问题的解决方案。

有人可以建议任何修复或解决方法来解决在 Oxygen OS 上运行 Android 7 或更高版本的设备上的通知问题吗?

最佳答案

我观察到相同的行为。该错误似乎是 Oxygen OS 不允许广播接收器从 PendingIntent 开始。解决方案是在 BroadcastReceiver 上使用服务。

将您的代码从 BroadcastReceiver 的 onReceive() 方法移至服务的 onStartCommand() 方法,然后在 PendingIntent 中设置该服务类。

...
intent.setClass(currentActivity, AlarmService.class);
...
PendingIntent pendingIntent = PendingIntent.getService(currentActivity, id, intent, PendingIntent.FLAG_UPDATE_CURRENT);
...

希望这对您有所帮助。

关于Android 7,8 和 Oxygen OS : Broadcast Receiver not working if app is killed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49874470/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com