Android 服务没有重新启动
Android service doesn't restart
我的服务在应用程序停止时没有重新启动。我的错误在哪里?
我的 Android 版本是 7.1.1
我试试看;
我在 onStartCommand 上返回了 START_STICKY 。
我写这个方法。
@Override
public void onTaskRemoved(Intent rootIntent){
Log.e("Tem Harita","Service Killed");
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Intent restartServiceIntent = new Intent(getApplicationContext(), this.getClass());
restartServiceIntent.setPackage(getPackageName());
PendingIntent restartServicePendingIntent = PendingIntent.getService(getApplicationContext(), 1, restartServiceIntent, PendingIntent.FLAG_ONE_SHOT);
AlarmManager alarmService = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE);
alarmService.set(
AlarmManager.ELAPSED_REALTIME,
SystemClock.elapsedRealtime() + 3500,
restartServicePendingIntent);
super.onTaskRemoved(rootIntent);
}
}
但它有时有效有时无效。不知道为什么。
转到您的 phone
设置->电池->电池优化->点击您的应用程序->点击不优化
您可以对所有应用执行相同的操作
我的服务在应用程序停止时没有重新启动。我的错误在哪里? 我的 Android 版本是 7.1.1 我试试看; 我在 onStartCommand 上返回了 START_STICKY 。 我写这个方法。
@Override
public void onTaskRemoved(Intent rootIntent){
Log.e("Tem Harita","Service Killed");
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Intent restartServiceIntent = new Intent(getApplicationContext(), this.getClass());
restartServiceIntent.setPackage(getPackageName());
PendingIntent restartServicePendingIntent = PendingIntent.getService(getApplicationContext(), 1, restartServiceIntent, PendingIntent.FLAG_ONE_SHOT);
AlarmManager alarmService = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE);
alarmService.set(
AlarmManager.ELAPSED_REALTIME,
SystemClock.elapsedRealtime() + 3500,
restartServicePendingIntent);
super.onTaskRemoved(rootIntent);
}
}
但它有时有效有时无效。不知道为什么。
转到您的 phone 设置->电池->电池优化->点击您的应用程序->点击不优化
您可以对所有应用执行相同的操作