I am trying to use a nested postDelayed because I need to do something after (delayed for) 5 minutes, stop it after (delayed) 30 seconds, do something else, then repeat both events in the cycle again from the start. I just can't seem to get it right.
code I have sofar:
private long EnabledAfter = 300000; // 5 minutes
private long DisabledAfter = 30000; // 30 seconds
public void start_timers(){
on_delayed(EnabledAfter);
}//end method
private void on_delayed(long period_off){
Delayed = new Runnable() {
public void run() {
something.enable(context);
something.enable_else(context, true);
off_delayed(DisabledAfter); // and disable both again delayed
Handler.postDelayed(Delayed, EnabledAfter);
}
};
Handler.postDelayed(Delayed, EnabledAfter);
}//end method
private void off_delayed(long period_on){
Delayed = new Runnable() {
public void run() {
something.disable(context);
something.disable_else(context, false);
on_delayed(period_on); // start the proces again from the start...
//Handler.postDelayed(Delayed, DisabledAfter);
}
};
Handler.postDelayed(Delayed, period_on);
}//end method
The problem with this is runs fine the first run, but then seems to stack on top of each other...and all delays are borked. I need to execute the both Runnable
s in exactly 5 minutes and 30 seconds, then repeat the process.
The net result after this code has run a few times is that the Handler
posts way too many instances of each Runnable
. As written above:
You are also not taking advantage of the fact that a Runnable
can be posted to the same queue multiple times, it doesn't have to be created new each time. This is essential if you want to cancel the actions, because the remove method on Handler
look for all the matching instances to remove from the queue. You might try something like this instead:
private long EnabledAfter = 300000; // 5 minutes
private long DisabledAfter = 30000; // 30 seconds
private Runnable Enabler = new Runnable() {
public void run() {
something.enable(context);
something.enable_else(context, true);
Handler.postDelayed(Disabler, DisabledAfter);
}
};
private Runnable Disabler = new Runnable() {
public void run() {
something.disable(context);
something.disable_else(context, false);
Handler.postDelayed(Enabler, EnabledAfter);
}
};
public void start_timers(){
Handler.postDelayed(Enabler, EnabledAfter);
}//end method
public void stop_timers(){
Handler.removeCallbacks(Enabler);
Handler.removeCallbacks(Disabler);
}//end method
I also added one more method you can use to cancel the timer operation by removing all the instances of your Runnable
items from the queue.
HTH
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With