START_STICKY を返す Service を使用し、それを startForeground にします。このようにして、システムがリソースのためにアプリを強制終了しても、しばらくすると正常に起動して再び実行されます。ユーザーがそれをうまく強制終了することについては、これは何かでもありますwhatsappを初めてインストールするときに身に着けているように、大きなアプリはWhatsappのように文句を言います。サービスがどのようにあるべきかの例を次に示します。
public class Yourservice extends Service{
@Override
public void onCreate() {
super.onCreate();
// Oncreat called one time and used for general declarations like registering a broadcast receiver
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
// here to show that your service is running foreground
mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent bIntent = new Intent(this, Main.class);
PendingIntent pbIntent = PendingIntent.getActivity(this, 0 , bIntent, Intent.FLAG_ACTIVITY_CLEAR_TOP);
NotificationCompat.Builder bBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("title")
.setContentText("sub title")
.setAutoCancel(true)
.setOngoing(true)
.setContentIntent(pbIntent);
barNotif = bBuilder.build();
this.startForeground(1, barNotif);
// here the body of your service where you can arrange your reminders and send alerts
return START_STICKY;
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onDestroy() {
super.onDestroy();
stopForeground(true);
}
}
これは、コードを実行するための継続的なサービスの最良のレシピです。