In my application I have an "Application" and several Activities. I would like to kill my application after a specific time (ex. 3 minutes) after user pressed the Home button. I'm able to finish the "Application"s process but as long as my activities are alive, they tries to start from their last state.
Thread isOnDisplayThread = new Thread(new Runnable() {
@Override
public void run() {
Timer mTimer = new Timer();
mTimer.schedule(new TimerTask() {
@Override
public void run() {
Log.d(TAG, (isApplicationOnDisplay) ? "Application on display" : "APPLICATION ON BACKGROUND");
if (!isApplicationOnDisplay) {
notOnDisplayTime++;
if (notOnDisplayTime >= 10) {
Process.killProcess(Process.myPid());
}
} else {
notOnDisplayTime = 0;
}
}
}, 0, 1000);
}
});
isOnDisplayThread.run();
P.S. isApplicationOnDisplay is a static boolean controlled by every Activity's onPause() and onResume() methods.
Is there any way to kill all related activities of an application?