Я хочу отслеживать пользователя каждые 30 минут в версии для Android Oreo. Службы отслеживания останавливаются, когда пользователь убивает из недавнего трея приложений. Я попытался использовать Foreground Service / Work Manager , который отлично работает в Pie, но не работает для Oreo.
Intent serviceIntent = new Intent (это, ExampleService.class);
serviceIntent.putExtra ("inputExtra", input);
ContextCompat.startForegroundService (это, serviceIntent);
ExampleService.Java
public class ExampleService extends Service {
private Timer mTimer;
private Handler mHandler = new Handler();
private static final int TIMER_INTERVAL = 120000; // 2 Minute
private static final int TIMER_DELAY = 0;
@Override
public void onCreate() {
super.onCreate();
if (mTimer != null)
mTimer = null;
mTimer = new Timer();
mTimer.scheduleAtFixedRate(new DisplayToastTimerTask(), TIMER_DELAY, TIMER_INTERVAL);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
String input=intent.getStringExtra("inputExtra");
Intent notificationIntent=new Intent(this, MainActivity.class);
PendingIntent pendingIntent=PendingIntent.getActivity(this,0,
notificationIntent,0);
Notification notification=new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("Example Service")
.setContentText(input)
.setSmallIcon(R.drawable.ic_android)
.setContentIntent(pendingIntent)
.build();
startForeground(1, notification);
return START_STICKY;
}
@Override
public void onDestroy() {
startAgainService();
super.onDestroy();
}
@Override
public void onTaskRemoved(Intent rootIntent) {
startAgainService();
super.onTaskRemoved(rootIntent);
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
private class DisplayToastTimerTask extends TimerTask {
Handler mHandler = new Handler();
@Override
public void run() {
mHandler.post(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Hello world every 5 minute", Toast.LENGTH_SHORT).show();
}
});
}
}
private void startAgainService() {
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() + 1000,
restartServicePendingIntent);
}
}