gpt4 book ai didi

java - 安卓服务 START_STICKY START_NOT_STICKY

转载 作者:太空狗 更新时间:2023-10-29 12:45:50 29 4
gpt4 key购买 nike

我需要让我的服务始终在后台运行。并使用“startService()”函数启动我的服务。无论应用程序的状态如何,我都不想重新启动服务。

这是我的观察。

START_STICKY > 如果应用程序启动,服务正在重新启动。当应用程序关闭时,服务也会自行重启。

START_NOT_STICK > 应用程序关闭后服务无法工作。

我需要一个始终运行的服务,它会在应用程序启动时接收广播。服务状态不得取决于应用程序是否正在运行。

你能帮帮我吗?

谢谢。

最佳答案

您需要设置一个启动接收器,在设备启动时启动您的服务警报(它将间歇性唤醒并确保您的服务正在运行)。 ALARM 接收器应该每分钟(或大约)醒来一次,以查看您的服务尚未被 Android 清理(这会不时发生)。

[编辑]

您需要一个 BootReceiver 来启动您的闹钟,如下所示:

public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {

AlarmManager alarmMgr = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
PendingIntent pendingIntent =
PendingIntent.getBroadcast(context, 0, new Intent(context, AlarmReceiver.class), 0);

alarmMgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime() + 2000, 60000, pendingIntent);
}
}

一个 alarmReceiver 看起来像这样:

public class AlarmReceiver extends BroadcastReceiver {
private String TAG = "AlarmReceiver";
// onReceive must be very quick and not block, so it just fires up a Service
@Override
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, MyLovelyService.class);
PendingIntent.getService(context, 0,i, 0).send();
}
}

最后这需要进入您的 list :

<receiver android:name=".BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>

<receiver android:name=".AlarmReceiver" />

关于java - 安卓服务 START_STICKY START_NOT_STICKY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18387346/

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